| 12345678910111213141516171819202122232425262728293031323334353637383940414243 |
- 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_shipplan")]
- public class mo_wms_shipplan : MoBaseEntity
- {
- ///// <summary>
- ///// 发货计划表主键
- ///// </summary>
- //[Key]
- //[Comment("发货计划表主键")]
- //public long shipplan_id { get; set; }
- /// <summary>
- /// 发货计划编号
- /// </summary>
- [StringLength(80)]
- [Comment("发货计划编号")]
- public string? shipplan_no { get; set; }
- /// <summary>
- /// 发货计划时间
- /// </summary>
- [Comment("发货计划时间")]
- public DateTime? shipplan_date { get; set; }
- /// <summary>
- /// 状态
- /// </summary>
- [Comment("状态")]
- [StringLength(80)]
- public string? state { get; set; }
- }
- }
|