| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128 |
- using Castle.ActiveRecord;
- using NHibernate.Criterion;
- using System;
- using System.Text;
- namespace BizCom
- {
- [ActiveRecord("CE_ErpUpFileSupplier")]
- public class CeErpUpFileSupplier : ComBase<CeErpUpFileSupplier>
- {
- /// <summary>
- ///
- /// </summary>
- [PrimaryKey(PrimaryKeyType.Native)]
- public int ID { get; set; }
- public int _supplierId = 0;
- /// <summary>
- /// 车间id
- /// </summary>
- [Property]
- public int supplierId
- {
- get { return _supplierId; }
- set { _supplierId = value; }
- }
- public string _payment = "";
- /// <summary>
- /// 金额
- /// </summary>
- [Property]
- public string payment
- {
- get { return _payment; }
- set { _payment = value; }
- }
- public string _size = "";
- /// <summary>
- /// 尺寸
- /// </summary>
- [Property]
- public string size
- {
- get { return _size; }
- set { _size = value; }
- }
- public string _number = "";
- /// <summary>
- /// 数量
- /// </summary>
- [Property]
- public string number
- {
- get { return _number; }
- set { _number = value; }
- }
- public string _seller_memo = "";
- /// <summary>
- /// 备注
- /// </summary>
- [Property]
- public string seller_memo
- {
- get { return _seller_memo; }
- set { _seller_memo = value; }
- }
- public string _shopIds = "";
- /// <summary>
- /// 店铺
- /// </summary>
- [Property]
- public string shopIds
- {
- get { return _shopIds; }
- set { _shopIds = value; }
- }
- public string _noShopIds = "";
- /// <summary>
- /// 禁止店铺
- /// </summary>
- [Property]
- public string noShopIds
- {
- get { return _noShopIds; }
- set { _noShopIds = value; }
- }
- public string _address = "";
- /// <summary>
- /// 地区
- /// </summary>
- [Property]
- public string address
- {
- get { return _address; }
- set { _address = value; }
- }
- public string _filterText = "";
- /// <summary>
- /// 排除条件
- /// </summary>
- [Property]
- public string filterText
- {
- get { return _filterText; }
- set { _filterText = value; }
- }
- public bool _isOpen = false;
- /// <summary>
- /// 排除条件
- /// </summary>
- [Property]
- public bool isOpen
- {
- get { return _isOpen; }
- set { _isOpen = value; }
- }
- }
- }
|