|
@@ -0,0 +1,257 @@
|
|
|
+using System;
|
|
|
+using System.Collections.Generic;
|
|
|
+using System.Linq;
|
|
|
+using System.Text;
|
|
|
+using System.Threading.Tasks;
|
|
|
+
|
|
|
+namespace OASystem.Domain.Entities.Groups
|
|
|
+{
|
|
|
+
|
|
|
+
|
|
|
+
|
|
|
+ [SugarTable("Grp_GroupCostParameter")]
|
|
|
+ public class Grp_GroupCostParameter:EntityBase
|
|
|
+ {
|
|
|
+
|
|
|
+
|
|
|
+
|
|
|
+ [SugarColumn(IsNullable =true,ColumnDataType ="int")]
|
|
|
+ public int DiId { get; set; }
|
|
|
+
|
|
|
+
|
|
|
+
|
|
|
+ [SugarColumn(IsNullable = true, ColumnDataType = "varchar(50)")]
|
|
|
+ public string Currency { get; set; }
|
|
|
+
|
|
|
+
|
|
|
+
|
|
|
+ [SugarColumn(IsNullable = true, ColumnDataType = "decimal(10,2)")]
|
|
|
+ public decimal Rate { get; set; }
|
|
|
+
|
|
|
+
|
|
|
+
|
|
|
+ [SugarColumn(IsNullable = true, ColumnDataType = "decimal(10,2)")]
|
|
|
+ public decimal Tax { get; set; }
|
|
|
+
|
|
|
+
|
|
|
+
|
|
|
+ [SugarColumn(IsNullable = true, ColumnDataType = "decimal(10,2)")]
|
|
|
+ public decimal FFYS { get; set; }
|
|
|
+
|
|
|
+
|
|
|
+
|
|
|
+ [SugarColumn(IsNullable = true, ColumnDataType = "decimal(10,2)")]
|
|
|
+ public decimal HotelXS { get; set; }
|
|
|
+
|
|
|
+
|
|
|
+
|
|
|
+ [SugarColumn(IsNullable = true, ColumnDataType = "decimal(10,2)")]
|
|
|
+ public decimal JJCCB { get; set; }
|
|
|
+
|
|
|
+
|
|
|
+
|
|
|
+ [SugarColumn(IsNullable = true, ColumnDataType = "decimal(10,2)")]
|
|
|
+ public decimal JJCXS { get; set; }
|
|
|
+
|
|
|
+
|
|
|
+
|
|
|
+ [SugarColumn(IsNullable = true, ColumnDataType = "int")]
|
|
|
+ public int JJCRS { get; set; }
|
|
|
+
|
|
|
+
|
|
|
+
|
|
|
+ [SugarColumn(IsNullable = true, ColumnDataType = "decimal(10,2)")]
|
|
|
+ public decimal GWCCB { get; set; }
|
|
|
+
|
|
|
+
|
|
|
+
|
|
|
+ [SugarColumn(IsNullable = true, ColumnDataType = "decimal(10,2)")]
|
|
|
+ public decimal GWCXS { get; set; }
|
|
|
+
|
|
|
+
|
|
|
+
|
|
|
+ [SugarColumn(IsNullable = true, ColumnDataType = "int")]
|
|
|
+ public int GWCRS { get; set; }
|
|
|
+
|
|
|
+
|
|
|
+
|
|
|
+ [SugarColumn(IsNullable = true, ColumnDataType = "decimal(10,2)")]
|
|
|
+ public decimal HCPCB { get; set; }
|
|
|
+
|
|
|
+
|
|
|
+
|
|
|
+ [SugarColumn(IsNullable = true, ColumnDataType = "decimal(10,2)")]
|
|
|
+ public decimal HCPXS { get; set; }
|
|
|
+
|
|
|
+
|
|
|
+
|
|
|
+ [SugarColumn(IsNullable = true, ColumnDataType = "int")]
|
|
|
+ public int HCPRS { get; set; }
|
|
|
+
|
|
|
+
|
|
|
+
|
|
|
+ [SugarColumn(IsNullable = true, ColumnDataType = "decimal(10,2)")]
|
|
|
+ public decimal CPCB { get; set; }
|
|
|
+
|
|
|
+
|
|
|
+
|
|
|
+ [SugarColumn(IsNullable = true, ColumnDataType = "decimal(10,2)")]
|
|
|
+ public decimal CPXS { get; set; }
|
|
|
+
|
|
|
+
|
|
|
+
|
|
|
+ [SugarColumn(IsNullable = true, ColumnDataType = "int")]
|
|
|
+ public int CPRS { get; set; }
|
|
|
+
|
|
|
+
|
|
|
+
|
|
|
+ [SugarColumn(IsNullable = true, ColumnDataType = "decimal(10,2)")]
|
|
|
+ public decimal BXCB { get; set; }
|
|
|
+
|
|
|
+
|
|
|
+
|
|
|
+ [SugarColumn(IsNullable = true, ColumnDataType = "decimal(10,2)")]
|
|
|
+ public decimal BXXS { get; set; }
|
|
|
+
|
|
|
+
|
|
|
+
|
|
|
+ [SugarColumn(IsNullable = true, ColumnDataType = "int")]
|
|
|
+ public int BXRS { get; set; }
|
|
|
+
|
|
|
+
|
|
|
+
|
|
|
+ [SugarColumn(IsNullable = true, ColumnDataType = "decimal(10,2)")]
|
|
|
+ public decimal HSCB { get; set; }
|
|
|
+
|
|
|
+
|
|
|
+
|
|
|
+ [SugarColumn(IsNullable = true, ColumnDataType = "decimal(10,2)")]
|
|
|
+ public decimal HSXS { get; set; }
|
|
|
+
|
|
|
+
|
|
|
+
|
|
|
+ [SugarColumn(IsNullable = true, ColumnDataType = "int")]
|
|
|
+ public int HSRS { get; set; }
|
|
|
+
|
|
|
+
|
|
|
+
|
|
|
+ [SugarColumn(IsNullable = true, ColumnDataType = "decimal(10,2)")]
|
|
|
+ public decimal VisaCB { get; set; }
|
|
|
+
|
|
|
+
|
|
|
+
|
|
|
+ [SugarColumn(IsNullable = true, ColumnDataType = "decimal(10,2)")]
|
|
|
+ public decimal VisaXS { get; set; }
|
|
|
+
|
|
|
+
|
|
|
+
|
|
|
+ [SugarColumn(IsNullable = true, ColumnDataType = "int")]
|
|
|
+ public int VisaRS { get; set; }
|
|
|
+
|
|
|
+
|
|
|
+
|
|
|
+ [SugarColumn(IsNullable = true, ColumnDataType = "decimal(10,2)")]
|
|
|
+ public decimal GWCB { get; set; }
|
|
|
+
|
|
|
+
|
|
|
+
|
|
|
+ [SugarColumn(IsNullable = true, ColumnDataType = "decimal(10,2)")]
|
|
|
+ public decimal GWXS { get; set; }
|
|
|
+
|
|
|
+
|
|
|
+
|
|
|
+ [SugarColumn(IsNullable = true, ColumnDataType = "int")]
|
|
|
+ public int GWRS { get; set; }
|
|
|
+
|
|
|
+
|
|
|
+
|
|
|
+ [SugarColumn(IsNullable = true, ColumnDataType = "decimal(10,2)")]
|
|
|
+ public decimal DJCB { get; set; }
|
|
|
+
|
|
|
+
|
|
|
+
|
|
|
+ [SugarColumn(IsNullable = true, ColumnDataType = "decimal(10,2)")]
|
|
|
+ public decimal DJXS { get; set; }
|
|
|
+
|
|
|
+
|
|
|
+
|
|
|
+ [SugarColumn(IsNullable = true, ColumnDataType = "decimal(10,2)")]
|
|
|
+ public decimal SGRCB { get; set; }
|
|
|
+
|
|
|
+
|
|
|
+
|
|
|
+ [SugarColumn(IsNullable = true, ColumnDataType = "int")]
|
|
|
+ public int SGRNumber { get; set; }
|
|
|
+
|
|
|
+
|
|
|
+
|
|
|
+ [SugarColumn(IsNullable = true, ColumnDataType = "decimal(10,2)")]
|
|
|
+ public decimal SGRXS { get; set; }
|
|
|
+
|
|
|
+
|
|
|
+
|
|
|
+ [SugarColumn(IsNullable = true, ColumnDataType = "decimal(10,2)")]
|
|
|
+ public decimal TBRCB { get; set; }
|
|
|
+
|
|
|
+
|
|
|
+
|
|
|
+ [SugarColumn(IsNullable = true, ColumnDataType = "int")]
|
|
|
+ public int TBRNumber { get; set; }
|
|
|
+
|
|
|
+
|
|
|
+
|
|
|
+ [SugarColumn(IsNullable = true, ColumnDataType = "decimal(10,2)")]
|
|
|
+ public decimal TBRXS { get; set; }
|
|
|
+
|
|
|
+
|
|
|
+
|
|
|
+ [SugarColumn(IsNullable = true, ColumnDataType = "decimal(10,2)")]
|
|
|
+ public decimal JSESCB { get; set; }
|
|
|
+
|
|
|
+
|
|
|
+
|
|
|
+ [SugarColumn(IsNullable = true, ColumnDataType = "int")]
|
|
|
+ public int JSESNumber { get; set; }
|
|
|
+
|
|
|
+
|
|
|
+
|
|
|
+ [SugarColumn(IsNullable = true, ColumnDataType = "decimal(10,2)")]
|
|
|
+ public decimal JSESXS { get; set; }
|
|
|
+
|
|
|
+
|
|
|
+
|
|
|
+ [SugarColumn(IsNullable = true, ColumnDataType = "decimal(10,2)")]
|
|
|
+ public decimal SUITECB { get; set; }
|
|
|
+
|
|
|
+
|
|
|
+
|
|
|
+ [SugarColumn(IsNullable = true, ColumnDataType = "int")]
|
|
|
+ public int SUITENumber { get; set; }
|
|
|
+
|
|
|
+
|
|
|
+
|
|
|
+ [SugarColumn(IsNullable = true, ColumnDataType = "decimal(10,2)")]
|
|
|
+ public decimal SUITEXS { get; set; }
|
|
|
+
|
|
|
+
|
|
|
+
|
|
|
+ [SugarColumn(IsNullable = true, ColumnDataType = "decimal(10,2)")]
|
|
|
+ public decimal LYJCB { get; set; }
|
|
|
+
|
|
|
+
|
|
|
+
|
|
|
+ [SugarColumn(IsNullable = true, ColumnDataType = "decimal(10,2)")]
|
|
|
+ public decimal LYJXS { get; set; }
|
|
|
+
|
|
|
+
|
|
|
+
|
|
|
+ [SugarColumn(IsNullable = true, ColumnDataType = "int")]
|
|
|
+ public int LYJRS { get; set; }
|
|
|
+
|
|
|
+
|
|
|
+
|
|
|
+ [SugarColumn(IsNullable = true, ColumnDataType = "int")]
|
|
|
+ public int IsShare { get; set; }
|
|
|
+
|
|
|
+ }
|
|
|
+}
|