u_bcpcompare.cs 516 B

1234567891011121314151617181920212223
  1. using LJLib.DAL.SQL;
  2. using System;
  3. using System.Collections.Generic;
  4. using System.Linq;
  5. using System.Text;
  6. namespace JLHHJSvr.Com.Model
  7. {
  8. [PK(new[] { "pzname" })]
  9. public sealed class u_bcpcompare
  10. {
  11. public string pzname { get; set; }
  12. /// <summary>
  13. /// 默认半成品归属
  14. /// </summary>
  15. public string wip_type { get; set; }
  16. /// <summary>
  17. /// 默认领用工组L1
  18. /// </summary>
  19. public string wrkgrpcode2 { get; set; }
  20. }
  21. }