erp_configure_code.cs 460 B

12345678910111213141516171819
  1. using JLHHJSvr.Com.Model;
  2. using LJLib.DAL.SQL;
  3. using System;
  4. using System.Collections.Generic;
  5. using System.Linq;
  6. using System.Text;
  7. namespace JLHHJSvr.Com.Model
  8. {
  9. [PK(new[] { "pzid" })]
  10. public sealed class erp_configure_code
  11. {
  12. public int? pzid { get; set; }
  13. public int? inputtype { get; set; }
  14. public string pzcode { get; set; }
  15. public int? typeid { get; set; }
  16. public string name { get; set; }
  17. }
  18. }