| 12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667 |
- 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_shipnotice")]
- public class mo_wms_shipnotice : MoBaseEntity
- {
- ///// <summary>
- ///// 发运通知单主键id
- ///// </summary>
- //[Key]
- //[Comment("发运通知单主键id")]
- //public long shipnotice_id { get; set; }
- /// <summary>
- /// 发运通知单号
- /// </summary>
- [StringLength(80)]
- [Required]
- [Comment("发运通知单号")]
- public string? shipnotice_no { get; set; }
- /// <summary>
- /// 发货计划id
- /// </summary>
- [Required]
- [Comment("发货计划id")]
- public long? shipplan_id { get; set; }
- /// <summary>
- /// 发货计划号
- /// </summary>
- [StringLength(80)]
- [Comment("发货计划号")]
- public string? shipplan_no { get; set; }
- /// <summary>
- /// 发运时间
- /// </summary>
- [Required]
- [Comment("发运时间")]
- public DateTime shipnotice_date { get; set; }
- /// <summary>
- /// 状态
- /// </summary>
- [Required]
- [StringLength(80)]
- [Comment("状态")]
- public string? state { get; set; }
- /// <summary>
- /// 发运地址
- /// </summary>
- [StringLength(255)]
- [Comment("发运地址")]
- public string? address { get; set; }
- }
- }
|