| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123 |
- using Microsoft.EntityFrameworkCore;
- using System;
- using System.Collections.Generic;
- using System.ComponentModel.DataAnnotations;
- using System.Linq;
- using System.Text;
- using System.Threading.Tasks;
- namespace Business.Domain
- {
- /// <summary>
- /// 发货明细表
- /// </summary>
- [Comment("发货明细表")]
- public class ASNBOLShipperDetail
- {
- /// <summary>
- /// 主键
- /// </summary>
- [Comment("主键")]
- [Key]
- public int RecID { get; set; }
- /// <summary>
- /// 发货次数
- /// </summary>
- [Precision(23, 10)]
- [Comment("发货次数")]
- public decimal? RealQty { get; set; }
- /// <summary>
- /// 发货数量
- /// </summary>
- [Precision(23, 10)]
- [Comment("发货数量")]
- public decimal? QtyToShip { get; set; }
- /// <summary>
- /// 单价
- /// </summary>
- [Precision(23, 10)]
- [Comment("单价")]
- public decimal? Price { get; set; }
- /// <summary>
- /// 项次,分组用的,不同物料编码
- /// </summary>
- [Precision(23, 10)]
- [Comment("项次")]
- public int Line { get; set; }
- // RealQty,QtyToShip,Price,Line,ShipDate,ContainerItem
- /// <summary>
- /// 域名
- /// </summary>
- [Comment("域名")]
- public string Domain { get; set; }
- /// <summary>
- /// 发货日期
- /// </summary>
- [Comment("发货日期")]
- public DateTime? ShipDate { get; set; }
- /// <summary>
- /// 物料编码
- /// </summary>
- [Comment("物料编码")]
- public string ContainerItem { get; set; }
- /// <summary>
- /// 行号
- /// </summary>
- [Comment("行号")]
- public string? Typed { get; set; }
- /// <summary>
- /// 类型
- /// </summary>
- [Comment("类型")]
- public string? shtype { get; set; }
- /// <summary>
- /// 销售渠道(国内国外T1、T2、国科、海王等待定)
- /// </summary>
- [Comment("销售渠道")]
- public string? CustRef { get; set; }
-
- /// <summary>
- /// 是否有效:1-有效;0-无效
- /// </summary>
- [Comment("是否有效")]
- public bool IsActive { get; set; }
- /// <summary>
- /// 创建时间
- /// </summary>
- [Comment("创建时间")]
- public DateTime? CreateTime { get; set; }
- /// <summary>
- /// 创建人
- /// </summary>
- [Comment("创建人")]
- public string CreateUser { get; set; }
- /// <summary>
- /// 创建时间
- /// </summary>
- [Comment("修改时间")]
- public DateTime? UpdateTime { get; set; }
- /// <summary>
- /// 修改人
- /// </summary>
- [Comment("修改人")]
- public string UpdateUser { get; set; }
- }
- }
|