| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163 |
- using System;
- using System.Text;
- namespace com.hnshituo.pur.vo
- {
- [Serializable]
- public class RequireReleaseInv
- {
- /** 托挂单记录号 */
- private string tid;
- public string Tid
- {
- get { return tid; }
- set { tid = value; }
- }
- /** 托挂单记录行号 */
- private string tLineId;
- public string TLineId
- {
- get { return tLineId; }
- set { tLineId = value; }
- }
- /** 库存记录行号 */
- private string invPosId;
- public string InvPosId
- {
- get { return invPosId; }
- set { invPosId = value; }
- }
- /** 源库存记录行号 */
- private string invPosIdOld;
- public string InvPosIdOld
- {
- get { return invPosIdOld; }
- set { invPosIdOld = value; }
- }
- /** 库存记录号 */
- private string invId;
- public string InvId
- {
- get { return invId; }
- set { invId = value; }
- }
- /** 数量 */
- private double? qty;
- public double? Qty
- {
- get { return qty; }
- set { qty = 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 createName;
- public string CreateName
- {
- get { return createName; }
- set { createName = value; }
- }
- /** 是否有效 */
- private string validflag;
- public string Validflag
- {
- get { return validflag; }
- set { validflag = 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; }
- }
- /** 库存占用表ID */
- private string useId;
- public string UseId
- {
- get { return useId; }
- set { useId = value; }
- }
- /** 源库存记录行号 */
- private string invIdOld;
- public string InvIdOld
- {
- get { return invIdOld; }
- set { invIdOld = value; }
- }
- /** 物理库区 */
- private string invPhysic;
- public string InvPhysic
- {
- get { return invPhysic; }
- set { invPhysic = value; }
- }
- /** 库区储位 */
- private string invPos;
- public string InvPos
- {
- get { return invPos; }
- set { invPos = value; }
- }
- }
- }
|