| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262 |
- using System;
- using System.Text;
- namespace com.hnshituo.pur.vo
- {
- [Serializable]
- public class BalanceCicpriceC
- {
- /** 主键 */
- private string id;
- public string Id
- {
- get { return id; }
- set { id = value; }
- }
- /** 标准号 */
- private string standId;
- public string StandId
- {
- get { return standId; }
- set { standId = value; }
- }
- /** 处理方式 */
- private string dealType;
- public string DealType
- {
- get { return dealType; }
- set { dealType = value; }
- }
- /** 检化验来源 */
- private string inspSrc;
- public string InspSrc
- {
- get { return inspSrc; }
- set { inspSrc = value; }
- }
- /** 结算类别 */
- private string balanceType;
- public string BalanceType
- {
- get { return balanceType; }
- set { balanceType = value; }
- }
- /** 价格计算方式 */
- private string priceCalcType;
- public string PriceCalcType
- {
- get { return priceCalcType; }
- set { priceCalcType = value; }
- }
- /** 上限符号 */
- private string maxSign;
- public string MaxSign
- {
- get { return maxSign; }
- set { maxSign = value; }
- }
- /** 上限值 */
- private double? maxVal;
- public double? MaxVal
- {
- get { return maxVal; }
- set { maxVal = value; }
- }
- /** 下限符号 */
- private string minSign;
- public string MinSign
- {
- get { return minSign; }
- set { minSign = value; }
- }
- /** 下限值 */
- private double? minVal;
- public double? MinVal
- {
- get { return minVal; }
- set { minVal = value; }
- }
- /** 步长 */
- private double? stepLen;
- public double? StepLen
- {
- get { return stepLen; }
- set { stepLen = value; }
- }
- /** 加减额度(含正负) */
- private double? addSubtValue;
- public double? AddSubtValue
- {
- get { return addSubtValue; }
- set { addSubtValue = value; }
- }
- /** 计算公式 */
- private string calcFormula;
- public string CalcFormula
- {
- get { return calcFormula; }
- set { calcFormula = value; }
- }
- /** 备注 */
- private string remark;
- public string Remark
- {
- get { return remark; }
- set { remark = value; }
- }
- /** 数据状态(有效、无效) */
- private string validflag;
- public string Validflag
- {
- get { return validflag; }
- set { validflag = value; }
- }
- /** 创建人 */
- private string createName;
- public string CreateName
- {
- get { return createName; }
- set { createName = value; }
- }
- /** 创建时间 */
- private DateTime? createTime;
- public DateTime? CreateTime
- {
- get { return createTime; }
- set { createTime = value; }
- }
- /** 修改人 */
- private string updateName;
- public string UpdateName
- {
- get { return updateName; }
- set { updateName = value; }
- }
- /** 修改时间 */
- private DateTime? updateTime;
- public DateTime? UpdateTime
- {
- get { return updateTime; }
- set { updateTime = value; }
- }
- /** 废除人 */
- private string deleteName;
- public string DeleteName
- {
- get { return deleteName; }
- set { deleteName = value; }
- }
- /** 废除时间 */
- private DateTime? deleteTime;
- public DateTime? DeleteTime
- {
- get { return deleteTime; }
- set { deleteTime = value; }
- }
- /** 创建人ID */
- private string createUserid;
- public string CreateUserid
- {
- get { return createUserid; }
- set { createUserid = value; }
- }
- /** 修改人ID */
- private string updateUserid;
- public string UpdateUserid
- {
- get { return updateUserid; }
- set { updateUserid = value; }
- }
- /** 废除人ID */
- private string deleteUserid;
- public string DeleteUserid
- {
- get { return deleteUserid; }
- set { deleteUserid = value; }
- }
- /** 元素代码 */
- private string chemCode;
- public string ChemCode
- {
- get { return chemCode; }
- set { chemCode = value; }
- }
- /** 元素名称 */
- private string chemName;
- public string ChemName
- {
- get { return chemName; }
- set { chemName = value; }
- }
- /** 检验类型 */
- private string chemType;
- public string ChemType
- {
- get { return chemType; }
- set { chemType = value; }
- }
- /** 检验公式 */
- private string chemFormula;
- public string ChemFormula
- {
- get { return chemFormula; }
- set { chemFormula = value; }
- }
- }
- }
|