| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116 |
- using Castle.ActiveRecord;
- using System;
- using NHibernate.Criterion;
- namespace BizCom
- {
- [ActiveRecord("CE_ErpSupplierProductTime")]
- public class CeErpSupplierProductTime : ComBase<CeErpSupplierProductTime>
- {
- /// <summary>
- /// ID
- /// </summary>
- [PrimaryKey(PrimaryKeyType.Native)]
- public int ID { get; set; }
- private int _supplierId = 0;
- /// <summary>
- /// 车间id
- /// </summary>
- [Property]
- public int supplierId
- {
- get { return _supplierId; }
- set { _supplierId = value; }
- }
- private string _productId = "";
- /// <summary>
- /// 产品id
- /// </summary>
- [Property]
- public string productId
- {
- get { return _productId; }
- set { _productId = value; }
- }
- private int _quantity = 0;
- /// <summary>
- /// 数量
- /// </summary>
- [Property]
- public int quantity
- {
- get { return _quantity; }
- set { _quantity = value; }
- }
- private string _deadLine = "00:00";
- /// <summary>
- /// 截稿时间
- /// </summary>
- [Property]
- public string deadLine
- {
- get { return _deadLine; }
- set { _deadLine = value; }
- }
- private int _sendDay = 0;
- /// <summary>
- /// 发货时间
- /// </summary>
- [Property]
- public int sendDay
- {
- get { return _sendDay; }
- set { _sendDay = value; }
- }
- private string _dayDeadLine = "00:00";
- /// <summary>
- /// 当日截稿时间设置0不用当日发货
- /// </summary>
- [Property]
- public string dayDeadLine
- {
- get { return _dayDeadLine; }
- set { _dayDeadLine = value; }
- }
- private string _craft = "";
- /// <summary>
- /// 工艺
- /// </summary>
- [Property]
- public string craft
- {
- get { return _craft; }
- set { _craft = value; }
- }
- private string _supplierName = "";
- /// <summary>
- /// 车间名称
- /// </summary>
- [Property]
- public string supplierName
- {
- get { return _supplierName; }
- set { _supplierName = value; }
- }
- private string _productName = "";
- /// <summary>
- /// 品类名称
- /// </summary>
- [Property]
- public string productName
- {
- get { return _productName; }
- set { _productName = value; }
- }
- }
- }
|