ar_gatheritem.cs 752 B

1234567891011121314151617181920212223242526272829303132
  1. using SqlSugar;
  2. using System;
  3. using System.Collections.Generic;
  4. using System.Linq;
  5. using System.Text;
  6. using System.Threading.Tasks;
  7. namespace HH.YiDaSyncNC.Dtos.NC
  8. {
  9. [SugarTable("ar_gatheritem")]
  10. public class ar_gatheritem
  11. {
  12. public ar_gatheritem()
  13. {
  14. }
  15. /// <summary>
  16. /// Desc:
  17. /// Default:
  18. /// Nullable:False
  19. /// </summary>
  20. [SugarColumn(IsPrimaryKey = true)]
  21. public string pk_gatheritem { get; set; }
  22. public string pk_gatherbill { get; set; }
  23. public string src_itemid { get; set; }
  24. public string src_billid { get; set; }
  25. public string billdate { get; set; }
  26. public decimal money_cr { get; set; }
  27. }
  28. }