| | |
| | | /// <summary> |
| | | /// SEQ_ITEM_ID |
| | | /// </summary> |
| | | [SugarColumn(ColumnName = "ID", OracleSequenceName = "SEQ_INV_ID", |
| | | [SugarColumn(ColumnName = "ID", OracleSequenceName = "SEQ_OUT_ID", |
| | | IsPrimaryKey = true)] |
| | | public decimal Id { get; set; } |
| | | |
| | |
| | | public decimal? Quantity { get; set; } |
| | | |
| | | /// <summary> |
| | | /// 创建人 |
| | | /// </summary> |
| | | [SugarColumn(ColumnName = "CREATE_BY")] |
| | | public string? CreateBy { get; set; } |
| | | |
| | | /// <summary> |
| | | /// 创建时间 |
| | | /// </summary> |
| | | [SugarColumn(ColumnName = "CREATE_DATE")] |
| | | public DateTime? CreateDate { get; set; } |
| | | |
| | | /// <summary> |
| | | /// 修改人 |
| | | /// </summary> |
| | | [SugarColumn(ColumnName = "LASTUPDATE_BY")] |
| | | public string? LastupdateBy { get; set; } |
| | | |
| | | /// <summary> |
| | | /// 修改时间 |
| | | /// </summary> |
| | | [SugarColumn(ColumnName = "LASTUPDATE_DATE")] |
| | | public DateTime? LastupdateDate { get; set; } |
| | |
| | | public string? Remark { get; set; } |
| | | |
| | | /// <summary> |
| | | /// 工厂 |
| | | /// </summary> |
| | | [SugarColumn(ColumnName = "FACTORY")] |
| | | public string? Factory { get; set; } |
| | | |
| | | /// <summary> |
| | | /// 公司 |
| | | /// </summary> |
| | | [SugarColumn(ColumnName = "COMPANY")] |
| | | public string? Company { get; set; } |
| | |
| | | public string? BoardItem { get; set; } |
| | | |
| | | /// <summary> |
| | | /// 是否委外 |
| | | /// </summary> |
| | | [SugarColumn(ColumnName = "F_TYPE")] |
| | | public decimal? FType { get; set; } |
| | | |
| | | /// <summary> |
| | | /// 是否完结 |
| | | /// </summary> |
| | | [SugarColumn(ColumnName = "STATUS")] |
| | | public decimal? Status { get; set; } |
| | |
| | | public string? RkNo { get; set; } |
| | | |
| | | /// <summary> |
| | | /// 已入库数 |
| | | /// 入库单数量 |
| | | /// </summary> |
| | | [SugarColumn(ColumnName = "RK_QTY")] |
| | | public decimal? RkQty { get; set; } |
| | |
| | | public decimal? ItemId { get; set; } |
| | | |
| | | /// <summary> |
| | | /// 物料投料单ID |
| | | /// 物料投料单ID(发料扫码使用) |
| | | /// </summary> |
| | | [SugarColumn(ColumnName = "ITEM_DABID")] |
| | | public decimal? ItemDabid { get; set; } |
| | | |
| | | [SugarColumn(IsIgnore = true)] public string? ItemName { get; set; } |
| | | [SugarColumn(IsIgnore = true)] public string? ItemModel { get; set; } |
| | | [SugarColumn(IsIgnore = true)] public string? ItemUnit { get; set; } |
| | | [SugarColumn(IsIgnore = true)] public string? QuantityOk { get; set; } |
| | | /// <summary> |
| | | /// 单位 |
| | | /// </summary> |
| | | [SugarColumn(ColumnName = "UNIT")] |
| | | public string? Unit { get; set; } |
| | | |
| | | /// <summary> |
| | | /// 入库单行内码 |
| | | /// </summary> |
| | | [SugarColumn(ColumnName = "RK_LINE")] |
| | | public decimal? RkLine { get; set; } |
| | | |
| | | /// <summary> |
| | | /// 计划跟踪号 |
| | | /// </summary> |
| | | [SugarColumn(ColumnName = "FMTONO")] |
| | | public string? Fmtono { get; set; } |
| | | |
| | | // <summary> |
| | | /// 申请行号 |
| | | /// </summary> |
| | | [SugarColumn(ColumnName = "SQ_NO")] |
| | | public string? SqNo { get; set; } |
| | | |
| | | //[SugarColumn(ColumnName = "ZZITEM_ID")] |
| | | //public string? ZzitemId{ get; set; } |
| | | } |