You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

27 lines
709 B

3 years ago
  1. using System;
  2. namespace Leit.Model
  3. {
  4. /// <summary>
  5. /// 数据表实体类:StationInfo
  6. /// </summary>
  7. [Serializable()]
  8. public class StationInfo :EntityBase<StationInfo>
  9. {
  10. //当前代码为系统自动生成
  11. /// <summary>
  12. /// String:工位号
  13. /// </summary>
  14. public String StationCode {get;set;}
  15. /// <summary>
  16. /// String:工位名称
  17. /// </summary>
  18. public String StationName {get;set;}
  19. }
  20. }