| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645 |
- using System;
- using System.Text;
- namespace Pur.Entity.ck
- {
- [Serializable]
- public class ExcDeliverySubC:MatAttr
- {
- /** 送货子单行号 */
- private string deliverySubLineSqe;
- public string DeliverySubLineSqe
- {
- get { return deliverySubLineSqe; }
- set { deliverySubLineSqe = value; }
- }
- /** 磅单号 */
- private string matchid;
- public string Matchid
- {
- get { return matchid; }
- set { matchid = value; }
- }
- /** 送货子单号 */
- private string deliverySubId;
- public string DeliverySubId
- {
- get { return deliverySubId; }
- set { deliverySubId = value; }
- }
- /** 送货单行号 */
- private string deliveryLineSqe;
- public string DeliveryLineSqe
- {
- get { return deliveryLineSqe; }
- set { deliveryLineSqe = value; }
- }
- /** 送货单号 */
- private string deliveryId;
- public string DeliveryId
- {
- get { return deliveryId; }
- set { deliveryId = value; }
- }
- /** 发货通知单号 */
- private string noticeId;
- public string NoticeId
- {
- get { return noticeId; }
- set { noticeId = value; }
- }
- /** 发货通知单行号 */
- private string noticeLineSqe;
- public string NoticeLineSqe
- {
- get { return noticeLineSqe; }
- set { noticeLineSqe = value; }
- }
- /** 通知单行需求关系表ID */
- private string noticeRpId;
- public string NoticeRpId
- {
- get { return noticeRpId; }
- set { noticeRpId = value; }
- }
-
- /** 初检人ID */
- private String cjUserid;
- public String CjUserid
- {
- get { return cjUserid; }
- set { cjUserid = value; }
- }
- /** 初检人 */
- private String cjName;
- public String CjName
- {
- get { return cjName; }
- set { cjName = value; }
- }
- /** 初检时间 */
- private DateTime? cjTime;
- public DateTime? CjTime
- {
- get { return cjTime; }
- set { cjTime = value; }
- }
-
-
- /** 复检人ID */
- private String fjUserid;
- public String FjUserid
- {
- get { return fjUserid; }
- set { fjUserid = value; }
- }
- /** 复检人 */
- private String fjName;
- public String FjName
- {
- get { return fjName; }
- set { fjName = value; }
- }
- /** 复检时间 */
- private DateTime? fjTime;
- public DateTime? FjTime
- {
- get { return fjTime; }
- set { fjTime = value; }
- }
- /** 入库人ID */
- private String rkUserid;
- public String RkUserid
- {
- get { return rkUserid; }
- set { rkUserid = value; }
- }
- /** 入库人 */
- private String rkName;
- public String RkName
- {
- get { return rkName; }
- set { rkName = value; }
- }
- /** 入库时间 */
- private DateTime? rkTime;
- public DateTime? RkTime
- {
- get { return rkTime; }
- set { rkTime = value; }
- }
- /** 合同号 */
- private string orderId;
- public string OrderId
- {
- get { return orderId; }
- set { orderId = value; }
- }
- /** 合同行号 */
- private string orderLineSqe;
- public string OrderLineSqe
- {
- get { return orderLineSqe; }
- set { orderLineSqe = value; }
- }
- /** 状态:1、待收货;2、已收货;3,已入库;4、已结算;9、已退货 */
- private string status;
- public string Status
- {
- get { return status; }
- set { status = value; }
- }
- /** 物料编码 */
- private string itemCode;
- public string ItemCode
- {
- get { return itemCode; }
- set { itemCode = value; }
- }
- /** 物料描述 */
- private string itemDesc;
- public string ItemDesc
- {
- get { return itemDesc; }
- set { itemDesc = value; }
- }
- /** 物料名称 */
- private string itemName;
- public string ItemName
- {
- get { return itemName; }
- set { itemName = value; }
- }
- /** 物料英文名称 */
- private string itemDescE;
- public string ItemDescE
- {
- get { return itemDescE; }
- set { itemDescE = value; }
- }
- /** 物料型号规格 */
- private string itemModel;
- public string ItemModel
- {
- get { return itemModel; }
- set { itemModel = value; }
- }
- /** 物料材质 */
- private string itemSpec;
- public string ItemSpec
- {
- get { return itemSpec; }
- set { itemSpec = value; }
- }
- /** 数量 */
- private double? qty;
- public double? Qty
- {
- get { return qty; }
- set { qty = value; }
- }
- /** 已生成送货子单数量 */
- private double? createdQty;
- public double? CreatedQty
- {
- get { return createdQty; }
- set { createdQty = value; }
- }
- /** 是否使用采购单位 */
- private string itemUseUom;
- public string ItemUseUom
- {
- get { return itemUseUom; }
- set { itemUseUom = value; }
- }
- /** 采购单位(个、袋、桶) */
- private string itemUom;
- public string ItemUom
- {
- get { return itemUom; }
- set { itemUom = value; }
- }
- /** 转换系数 */
- private double? itemUomConefficient;
- public double? ItemUomConefficient
- {
- get { return itemUomConefficient; }
- set { itemUomConefficient = value; }
- }
- /** 库存单位 */
- private string weightUnit;
- public string WeightUnit
- {
- get { return weightUnit; }
- set { weightUnit = value; }
- }
- /** 入库类型 */
- private string receiveType;
- public string ReceiveType
- {
- get { return receiveType; }
- set { receiveType = value; }
- }
- /** 发货数量 */
- private double? shipQty;
- public double? ShipQty
- {
- get { return shipQty; }
- set { shipQty = value; }
- }
- /** 累计发货数量 */
- private double? shippedQty;
- public double? ShippedQty
- {
- get { return shippedQty; }
- set { shippedQty = value; }
- }
- /** 累计收货量 */
- private double? receivedQty;
- public double? ReceivedQty
- {
- get { return receivedQty; }
- set { receivedQty = value; }
- }
- /** 采购员 */
- private string buyerName;
- public string BuyerName
- {
- get { return buyerName; }
- set { buyerName = value; }
- }
- /** 是否计量 */
- private string meteringFlag;
- public string MeteringFlag
- {
- get { return meteringFlag; }
- set { meteringFlag = value; }
- }
- /** 是否批次控制 */
- private string batchFlag;
- public string BatchFlag
- {
- get { return batchFlag; }
- set { batchFlag = value; }
- }
- /** 是否理化检验 */
- private string pcFlag;
- public string PcFlag
- {
- get { return pcFlag; }
- set { pcFlag = value; }
- }
- /** 公司中文名称 */
- private string companyName;
- public string CompanyName
- {
- get { return companyName; }
- set { companyName = value; }
- }
- /** 备注 */
- private string remark;
- public string Remark
- {
- get { return remark; }
- set { remark = value; }
- }
- /** 数据状态(有效、无效) */
- private string validflag;
- public string Validflag
- {
- get { return validflag; }
- set { validflag = value; }
- }
- /** 创建人 */
- private string createName;
- public string CreateName
- {
- get { return createName; }
- set { createName = value; }
- }
- /** 创建时间 */
- private DateTime? createTime;
- public DateTime? CreateTime
- {
- get { return createTime; }
- set { createTime = value; }
- }
- /** 修改人 */
- private string updateName;
- public string UpdateName
- {
- get { return updateName; }
- set { updateName = value; }
- }
- /** 修改时间 */
- private DateTime? updateTime;
- public DateTime? UpdateTime
- {
- get { return updateTime; }
- set { updateTime = value; }
- }
- /** 废除人 */
- private string deleteName;
- public string DeleteName
- {
- get { return deleteName; }
- set { deleteName = value; }
- }
- /** 废除时间 */
- private DateTime? deleteTime;
- public DateTime? DeleteTime
- {
- get { return deleteTime; }
- set { deleteTime = value; }
- }
- /** 创建人ID */
- private string createUserid;
- public string CreateUserid
- {
- get { return createUserid; }
- set { createUserid = value; }
- }
- /** 修改人ID */
- private string updateUserid;
- public string UpdateUserid
- {
- get { return updateUserid; }
- set { updateUserid = value; }
- }
- /** 废除人ID */
- private string deleteUserid;
- public string DeleteUserid
- {
- get { return deleteUserid; }
- set { deleteUserid = value; }
- }
- /** 包装方式 */
- private string packageType;
- public string PackageType
- {
- get { return packageType; }
- set { packageType = value; }
- }
- /** 检验编号 */
- private string checkNo;
- public string CheckNo
- {
- get { return checkNo; }
- set { checkNo = value; }
- }
- private string packageQty;
- /// <summary>
- /// 包装数
- /// </summary>
- public string PackageQty
- {
- set { packageQty = value; }
- get { return packageQty; }
- }
- /**生产批次 */
- private string batchNo;
- public string BatchNo
- {
- get { return batchNo; }
- set { batchNo = value; }
- }
- /**车号 */
- private string carNum;
- public string CarNum
- {
- get { return carNum; }
- set { carNum = value; }
- }
- private string matBatchNo;
- /// <summary>
- /// 物料批号
- /// </summary>
- public string MatBatchNo
- {
- set { matBatchNo = value; }
- get { return matBatchNo; }
- }
- private Double? unitWeight;
- /// <summary>
- /// 每袋重量
- /// </summary>
- public Double? UnitWeight
- {
- set { unitWeight = value; }
- get { return unitWeight; }
- }
- private Double? kzQty;
- /// <summary>
- /// 扣杂量
- /// </summary>
- public Double? KzQty
- {
- set { kzQty = value; }
- get { return kzQty; }
- }
- private Double? jlQty;
- /// <summary>
- /// 计量结果
- /// </summary>
- public Double? JlQty
- {
- set { jlQty = value; }
- get { return jlQty; }
- }
- private string packageUnit;
- /// <summary>
- /// 包装单位
- /// </summary>
- public string PackageUnit
- {
- set { packageUnit = value; }
- get { return packageUnit; }
- }
- private Double? deduction2;
- /// <summary>
- /// 扣机铁
- /// </summary>
- public Double? Deduction2
- {
- set { deduction2 = value; }
- get { return deduction2; }
- }
- private Double? deduction3;
- /// <summary>
- /// 扣超长
- /// </summary>
- public Double? Deduction3
- {
- set { deduction3 = value; }
- get { return deduction3; }
- }
- private Double? deduction4;
- /// <summary>
- /// 扣轻薄
- /// </summary>
- public Double? Deduction4
- {
- set { deduction4 = value; }
- get { return deduction4; }
- }
- /// <summary>
- /// 是否已计量
- /// </summary>
- private string ismeter;
- public string Ismeter
- {
- get { return ismeter; }
- set { ismeter = value; }
- }
- //送货单集合(用于查询)
- private string[] col;
- public string[] Col
- {
- get { return col; }
- set { col = value; }
- }
- //处置编码
- private string handleCode;
- public string HandleCode
- {
- get { return handleCode; }
- set { handleCode = value; }
- }
- //让步接收送货单
- private string handleSubId;
- public string HandleSubId
- {
- get { return handleSubId; }
- set { handleSubId = value; }
- }
- //让步接收量
- private Double? handledQty;
- public Double? HandledQty
- {
- get { return handledQty; }
- set { handledQty = value; }
- }
- }
- }
|