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