| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051 |
- using Business.Core.Attributes;
- using Bussiness.MongoModel;
- using Microsoft.EntityFrameworkCore;
- using System.ComponentModel;
- using System.ComponentModel.DataAnnotations;
- namespace Bussiness.MongoModel.Sale
- {
- /// <summary>
- ///进度字典
- /// </summary>
- [Comment("进度字典表")]
- [CollectionName("dopbase", "mo_wms_prdprogress")]
- public class mo_wms_prdprogress: MoBaseEntity
- {
- ///// <summary>
- ///// 进度字典id
- ///// </summary>
- //[Key]
- //[Comment("进度字典主键id")]
- //public long progress_id { get; set; }
- /// <summary>
- /// 进度类型
- /// </summary>
- [StringLength(255)]
- [Comment("进度类型")]
- public string? prdprog_type { get; set; }
- /// <summary>
- /// 进度名称
- /// </summary>
- [StringLength(255)]
- [Comment("进度名称")]
- public string? prdprog_name { get; set; }
- /// <summary>
- /// 进度顺序
- /// </summary>
- [Required]
- [Comment("进度顺序")]
- public int? prdprog_seq { get; set; }
- /// <summary>
- /// 进度状态1启用0停用
- /// </summary>
- [Comment("进度状态1启用0停用")]
- [DefaultValue(true)]
- public bool state { get; set; }
- }
- }
|