OrderUnit.cs 794 B

1234567891011121314151617181920212223242526
  1. using System;
  2. using System.Collections.Generic;
  3. using System.ComponentModel.DataAnnotations;
  4. using System.ComponentModel.DataAnnotations.Schema;
  5. using System.Linq;
  6. using System.Text;
  7. using System.Threading.Tasks;
  8. using Abp.Domain.Entities;
  9. namespace ShwasherSys.Order
  10. {
  11. [Table("OrderUnit")]
  12. public class OrderUnit:Entity<int>
  13. {
  14. [StringLength(50)]
  15. public string OrderUnitName { get; set; }
  16. public int? ProductNum { get; set; }
  17. [StringLength(250)]
  18. public string OrderUnitDesc { get; set; }
  19. [Column(TypeName = "smalldatetime")]
  20. public DateTime? TimeCreated { get; set; }
  21. [Column(TypeName = "smalldatetime")]
  22. public DateTime? TimeLastMod { get; set; }
  23. public string UserIDLastMod { get; set; }
  24. }
  25. }