You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
54 lines
1.3 KiB
54 lines
1.3 KiB
4 years ago
|
using System;
|
||
|
using System.Collections.Generic;
|
||
|
using System.Linq;
|
||
|
using System.Text;
|
||
|
using QMAPP.Entity;
|
||
|
using QMFrameWork.Data.Attributes;
|
||
|
using System.Data;
|
||
|
|
||
|
namespace QMAPP.FJC.Entity.Operation
|
||
|
{
|
||
|
/// <summary>
|
||
|
/// 产品生产与消耗类
|
||
|
/// 闫永刚
|
||
|
/// 2018-7-18
|
||
|
/// </summary>
|
||
|
public class ProductCount : BaseEntity
|
||
|
{
|
||
|
///<summary>
|
||
|
///主键
|
||
|
///</summary>
|
||
|
[DBColumn(ColumnName = "PID", DataType = DbType.String, IsKey = true)]
|
||
|
public string PID { get; set; }
|
||
|
|
||
|
|
||
|
///<summary>
|
||
|
///物料号
|
||
|
///</summary>
|
||
|
[DBColumn(ColumnName = "MATERIAL_CODE", DataType = DbType.String)]
|
||
|
public string MATERIAL_CODE { get; set; }
|
||
|
|
||
|
|
||
|
///<summary>
|
||
|
///数量
|
||
|
///</summary>
|
||
|
[DBColumn(ColumnName = "COUNTVALUE", DataType = DbType.Int32)]
|
||
|
public int COUNTVALUE { get; set; }
|
||
|
|
||
|
///<summary>
|
||
|
///类型 0:生产 1:消耗
|
||
|
///</summary>
|
||
|
[DBColumn(ColumnName = "PROTYPE", DataType = DbType.Int32)]
|
||
|
public int PROTYPE { get; set; }
|
||
|
|
||
|
|
||
|
|
||
|
///<summary>
|
||
|
///更新时间
|
||
|
///</summary>
|
||
|
[DBColumn(ColumnName = "UPDATETIME", DataType = DbType.DateTime)]
|
||
|
public DateTime UPDATETIME { get; set; }
|
||
|
|
||
|
}
|
||
|
}
|