WCS_MAPPINGENTRY.cs 464 B

1234567891011121314151617
  1. using System;
  2. using System.Collections.Generic;
  3. using System.Text;
  4. using SqlSugar;
  5. namespace WCS.Data.Models
  6. {
  7. public class WCS_MAPPINGENTRY
  8. {
  9. [SugarColumn(IsPrimaryKey = true, IsIdentity = false)]
  10. public int MEP_ID { get; set; }
  11. public int MEP_MAPPINGNO { get; set; }
  12. public string MEP_MAPPINGTYPE { get; set; }
  13. public string MEP_MAPPINGCHNAME { get; set; }
  14. public bool MEP_ISSTOP { get; set; }
  15. }
  16. }