| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164 |
- using System;
- using System.Text;
- namespace com.hnshituo.pur.vo
- {
- [Serializable]
- public class CkMove
- {
- /** 库存记录号 */
- private string invId;
- public string InvId
- {
- get { return invId; }
- set { invId = value; }
- }
- /** 1.操作移库,2.挂单移库 */
- private string type;
- public string Type
- {
- get { return type; }
- set { type = value; }
- }
- /** "1:待确认
- 2:已完成
- 9:已取消
- " */
- private string status;
- public string Status
- {
- get { return status; }
- set { status = value; }
- }
- /** 移库数量 */
- private double? qty;
- public double? Qty
- {
- get { return qty; }
- set { qty = 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; }
- }
- /** 创建人ID */
- private string createUserid;
- public string CreateUserid
- {
- get { return createUserid; }
- set { createUserid = 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 deleteUserid;
- public string DeleteUserid
- {
- get { return deleteUserid; }
- set { deleteUserid = value; }
- }
- /** 主键 */
- private string moveId;
- public string MoveId
- {
- get { return moveId; }
- set { moveId = value; }
- }
- /** 新库存记录号 */
- private string invIdNew;
- public string InvIdNew
- {
- get { return invIdNew; }
- set { invIdNew = value; }
- }
- /** 库存记录行号 */
- private string invPosId;
- public string InvPosId
- {
- get { return invPosId; }
- set { invPosId = value; }
- }
- /** 新库存记录行号 */
- private string invPosIdNew;
- public string InvPosIdNew
- {
- get { return invPosIdNew; }
- set { invPosIdNew = value; }
- }
- /** 关联的托管单号 */
- private string tid;
- public string TId
- {
- get { return tid; }
- set { tid = value; }
- }
- }
- }
|