123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130 |
- using System;
- using System.Collections.Generic;
- using System.Linq;
- using System.Text;
- using System.Threading.Tasks;
- namespace OASystem.Domain.Entities.Resource
- {
-
-
-
- [SugarTable("Res_ItemVendor")]
- public class Res_ItemVendor : EntityBase
- {
-
-
-
- [SugarColumn(IsNullable = true, ColumnDataType = "varchar(50)")]
- public string BusRange { get; set; }
-
-
-
- [SugarColumn(IsNullable = true, ColumnDataType = "varchar(100)")]
- public string FullName { get; set; }
-
-
-
- [SugarColumn(IsNullable = true, ColumnDataType = "varchar(50)")]
- public string ShortName { get; set; }
-
-
-
- [SugarColumn(IsNullable = true, ColumnDataType = "varchar(100)")]
- public string Address { get; set; }
-
-
-
- [SugarColumn(IsNullable = true, ColumnDataType = "varchar(50)")]
- public string Linker { get; set; }
-
-
-
- [SugarColumn(IsNullable = true, ColumnDataType = "varchar(50)")]
- public string Job { get; set; }
-
-
-
- [SugarColumn(IsNullable = true, ColumnDataType = "varchar(50)")]
- public string Mobile { get; set; }
- }
- [SugarTable("Res_ItemType")]
- public class Res_ItemTypeInfo : EntityBase
- {
- [SugarColumn(IsNullable = true, ColumnDataType = "int")]
- public int SdId { get; set; }
- [SugarColumn(IsNullable = true, ColumnDataType = "varchar(50)")]
- public string TypeName { get; set; }
- }
-
-
-
- [SugarTable("Res_ItemDetail")]
- public class Res_ItemDetailInfo : EntityBase
- {
-
-
-
- [SugarColumn(IsNullable = true, ColumnDataType = "int")]
- public int VendorId { get; set; }
-
-
-
- [SugarColumn(IsNullable = true, ColumnDataType = "varchar(50)")]
- public string ItemName { get; set; }
-
-
-
- [SugarColumn(IsNullable = true, ColumnDataType = "int")]
- public int ItemTypeId { get; set; }
-
-
-
- [SugarColumn(IsNullable = true, ColumnDataType = "decimal(9,2)")]
- public decimal MinRate { get; set; }
-
-
-
- [SugarColumn(IsNullable = true, ColumnDataType = "datetime")]
- public DateTime MinDt { get; set; }
-
-
-
- [SugarColumn(IsNullable = true, ColumnDataType = "decimal(9,2)")]
- public decimal MaxRate { get; set; }
-
-
-
- [SugarColumn(IsNullable = true, ColumnDataType = "datetime")]
- public DateTime MaxDt { get; set; }
-
-
-
- [SugarColumn(IsNullable = true, ColumnDataType = "decimal(9,2)")]
- public decimal CurrRate { get; set; }
-
-
-
- [SugarColumn(IsNullable = true, ColumnDataType = "datetime")]
- public DateTime CurrDt { get; set; }
- }
- }
|