|
12345678910111213141516171819202122 |
- namespace BPA.MES.Base.Application.Entitys
- {
- /// <summary>
- /// 名 称 :胖子天骄桶管理
- /// 创 建 人 :yangxiao
- /// 创建时间 : 2023/7/14 11:33:10
- /// 描 述 :
- /// </summary>
- [SugarTable("bucket_info")]
- public class Pztj_BucketInfoEntity : DEntityBase
- {
- /// <summary>
- /// 桶名称
- /// </summary>
- public string Name { get; set; }
- /// <summary>
- /// 桶编号
- /// </summary>
- public string Code { get; set; }
-
- }
- }
|