forked from hechenqingyuan/gitwms
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathProc_AuditeMoveEntity.cs
59 lines (47 loc) · 2.23 KB
/
Proc_AuditeMoveEntity.cs
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
/*******************************************************************************
* Copyright (C) Git Corporation. All rights reserved.
*
* Author: 代码工具自动生成
* Create Date: 2014/05/01 10:31:16
* Blog: http://www.cnblogs.com/qingyuan/
* Copyright: 太数智能科技(上海)有限公司
* Description: Git.Framework
*
* Revision History:
* Date Author Description
* 2014/05/01 10:31:16
*********************************************************************************/
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Data;
using Git.Framework.ORM;
namespace Git.Storage.Entity.Move
{
[TableAttribute(DbName = "JooWMS", Name = "Proc_AuditeMove", IsInternal = false,MapType=MapType.Proc)]
public partial class Proc_AuditeMoveEntity:BaseEntity
{
public Proc_AuditeMoveEntity()
{
}
[DataMapping(ColumnName = "OrderNum", DbType = DbType.String, Length = 50, ColumnType = ColumnType.InPut)]
public string OrderNum { get; set; }
[DataMapping(ColumnName = "Status", DbType = DbType.Int32, Length = 4000,ColumnType=ColumnType.InPut)]
public Int32 Status { get; set; }
[DataMapping(ColumnName = "AuditUser", DbType = DbType.String, Length = 50, ColumnType = ColumnType.InPut)]
public string AuditUser { get; set; }
[DataMapping(ColumnName = "Reason", DbType = DbType.String, Length = 400,ColumnType=ColumnType.InPut)]
public string Reason { get; set; }
[DataMapping(ColumnName = "OperateType", DbType = DbType.Int32, Length = 4000,ColumnType=ColumnType.InPut)]
public Int32 OperateType { get; set; }
[DataMapping(ColumnName = "EquipmentNum", DbType = DbType.String, Length = 50, ColumnType = ColumnType.InPut)]
public string EquipmentNum { get; set; }
[DataMapping(ColumnName = "EquipmentCode", DbType = DbType.String, Length = 50, ColumnType = ColumnType.InPut)]
public string EquipmentCode { get; set; }
[DataMapping(ColumnName = "Remark", DbType = DbType.String, Length = 400,ColumnType=ColumnType.InPut)]
public string Remark { get; set; }
[DataMapping(ColumnName = "ReturnValue", DbType = DbType.String, Length = 50,ColumnType=ColumnType.InOutPut)]
public string ReturnValue { get; set; }
}
}