| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118 |
- using Castle.ActiveRecord;
- using NHibernate.Criterion;
- using System;
- using System.Text;
- namespace BizCom
- {
- [ActiveRecord("CE_ErpPackData")]
- public class CeErpPackData : ComBase<CeErpPackData>
- {
- /// <summary>
- ///
- /// </summary>
- [PrimaryKey(PrimaryKeyType.Native)]
- public int ID { get; set; }
- private string _fileName = "";
- /// <summary>
- /// 文件名
- /// </summary>
- [Property]
- public string fileName
- {
- get { return _fileName; }
- set { _fileName = value; }
- }
- private int _downNum = 0;
- /// <summary>
- /// 下载次数
- /// </summary>
- [Property]
- public int downNum
- {
- get { return _downNum; }
- set { _downNum = value; }
- }
- private int _upStatus = 0;
- /// <summary>
- /// 状态 0待打包 1打包中 2打包完成 3打包失败 4取消
- /// </summary>
- [Property]
- public int upStatus
- {
- get { return _upStatus; }
- set { _upStatus = value; }
- }
- private string _fileUrl = "";
- /// <summary>
- /// 文件地址
- /// </summary>
- [Property]
- public string fileUrl
- {
- get { return _fileUrl; }
- set { _fileUrl = value; }
- }
- private int _supplierId = 0;
- /// <summary>
- /// 车间ID
- /// </summary>
- [Property]
- public int supplierId
- {
- get { return _supplierId; }
- set { _supplierId = value; }
- }
- private DateTime _createtime = DateTime.Now;
- /// <summary>
- /// 创建时间
- /// </summary>
- [Property]
- public DateTime createtime
- {
- get { return _createtime; }
- set { _createtime = value; }
- }
- private int _createBy = 0;
- /// <summary>
- /// 创建人
- /// </summary>
- [Property]
- public int createBy
- {
- get { return _createBy; }
- set { _createBy = value; }
- }
- private string _createName = "";
- /// <summary>
- /// 创建人
- /// </summary>
- [Property]
- public string createName
- {
- set { _createName = value; }
- get { return _createName; }
- }
- private string _message = "";
- /// <summary>
- /// 信息
- /// </summary>
- [Property]
- public string message
- {
- get { return _message; }
- set { _message = value; }
- }
- }
- }
|