forked from hechenqingyuan/gitwms
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathProc_BadTOP10NumEntity.cs
56 lines (45 loc) · 2.2 KB
/
Proc_BadTOP10NumEntity.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
/*******************************************************************************
* Copyright (C) Git Corporation. All rights reserved.
*
* Author: 代码工具自动生成
* Create Date: 2014/06/09 14:54:34
* Blog: http://www.cnblogs.com/qingyuan/
* Copyright: 太数智能科技(上海)有限公司
* Description: Git.Framework
*
* Revision History:
* Date Author Description
* 2014/06/09 14:54:34
*********************************************************************************/
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Data;
using Git.Framework.ORM;
namespace Git.Storage.Entity.Bad
{
[TableAttribute(DbName = "JooWMS", Name = "Proc_BadTOP10Num", IsInternal = false, MapType = MapType.Proc)]
public partial class Proc_BadTOP10NumEntity : BaseEntity
{
public Proc_BadTOP10NumEntity()
{
}
[DataMapping(ColumnName = "ProductNum", DbType = DbType.String, Length = 50, ColumnType = ColumnType.InPut)]
public string ProductNum { get; set; }
[DataMapping(ColumnName = "StorageNum", DbType = DbType.String, Length = 50, ColumnType = ColumnType.InPut)]
public string StorageNum { get; set; }
[DataMapping(ColumnName = "ProductName", DbType = DbType.String, Length = 100, ColumnType = ColumnType.InOutPut)]
public string ProductName { get; set; }
[DataMapping(ColumnName = "TotalNum", DbType = DbType.Double, Length = 4000, ColumnType = ColumnType.InOutPut)]
public double TotalNum { get; set; }
[DataMapping(ColumnName = "BeginTime", DbType = DbType.DateTime, Length = 4000, ColumnType = ColumnType.InPut)]
public DateTime BeginTime { get; set; }
[DataMapping(ColumnName = "EndTime", DbType = DbType.DateTime, Length = 4000, ColumnType = ColumnType.InPut)]
public DateTime EndTime { get; set; }
[DataMapping(ColumnName = "Status", DbType = DbType.Int32, Length = 4000, ColumnType = ColumnType.InPut)]
public Int32 Status { get; set; }
[DataMapping(ColumnName = "IsDelete", DbType = DbType.Int32, Length = 4000, ColumnType = ColumnType.InPut)]
public Int32 IsDelete { get; set; }
}
}