1234567891011121314151617 |
- using System;
- using System.Collections.Generic;
- using System.Text;
- using SqlSugar;
- namespace WCS.Data.Models
- {
- public class WCS_MAPPINGENTRY
- {
- [SugarColumn(IsPrimaryKey = true, IsIdentity = false)]
- public int MEP_ID { get; set; }
- public int MEP_MAPPINGNO { get; set; }
- public string MEP_MAPPINGTYPE { get; set; }
- public string MEP_MAPPINGCHNAME { get; set; }
- public bool MEP_ISSTOP { get; set; }
- }
- }
|