123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105 |
- using System;
- using System.Collections.Generic;
- using System.Linq;
- using System.Text;
- using System.Threading.Tasks;
- namespace OASystem.Domain.ViewModels.Resource
- {
- #region 物料
- public class Res_ItemInfoView
- {
-
-
-
-
- public int ItemId { get; set; }
-
-
-
- public string ItemName { get; set; }
-
-
-
- public int VendorId { get; set; }
-
-
-
- public string VendorFullName { get; set; }
-
-
-
- public string VendorShortName { get; set; }
-
-
-
- public int ItemTypeId { get; set; }
-
-
-
- public string ItemTypeName { get; set; }
-
-
-
- public int ItemTypeSetDataId { get; set; }
-
-
-
- public decimal MinRate { get; set; }
-
-
-
- public decimal MaxRate { get; set; }
- public decimal CurrRate { get; set; }
-
-
-
- public string Remark { get; set; }
- }
- public class Res_ItemInfoListView : ListViewBase<Res_ItemInfoView>
- {
- }
- #endregion
-
- #region 供应商
- public class Res_ItemVendorView
- {
- public int Id { get; set; }
- public string BusRange { get; set; }
- public string BusRange_Text { get; set; }
- public string FullName { get; set; }
- public string ShortName { get; set; }
- public string Address { get; set; }
- public string Linker { get; set; }
- public string Job { get; set; }
- public string Mobile { get; set; }
- public string Remark { get; set; }
- }
- public class Res_ItemVendorListView : ListViewBase<Res_ItemVendorView>
- {
- }
- #endregion
- }
|