using System; using System.Text; namespace com.hnshituo.com.vo { [Serializable] public class BaseChem { /** 化学元素代码 */ private string chemCode; public string ChemCode { get { return chemCode; } set { chemCode = value; } } /** 化学元素描述 */ private string chemName; public string ChemName { get { return chemName; } set { chemName = value; } } /** 化学元素类型(A:单一元素,B:复合元素) */ private string chemType; public string ChemType { get { return chemType; } set { chemType = value; } } /** 复合元素计算公式 */ private string chemFormula; public string ChemFormula { get { return chemFormula; } set { chemFormula = 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; } } /** 有效标志(1:有效,0:无效) */ private string validflag; public string Validflag { get { return validflag; } set { validflag = value; } } /** 备注 */ private string memo; public string Memo { get { return memo; } set { memo = value; } } /** 修约位数(保留几位小数) */ private long? roundingDigits; public long? RoundingDigits { get { return roundingDigits; } set { roundingDigits = value; } } /** {老系统}化学元素代码 */ private string chemCodeOld; public string ChemCodeOld { get { return chemCodeOld; } set { chemCodeOld = value; } } } }