| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121 |
- namespace Core.StlMes.Client.Qcm
- {
- /// <summary>
- /// 产能井设置对象
- /// </summary>
- public class ComBaseWellObject
- {
- /// <summary>
- /// 产能井代码
- /// </summary>
- private string wellCode = "";
- public string WellCode
- {
- get { return wellCode; }
- set { wellCode = value; }
- }
- /// <summary>
- /// 产能井描述
- /// </summary>
- private string wellName = "";
- public string WellName
- {
- get { return wellName; }
- set { wellName = value; }
- }
- /// <summary>
- /// 最大产能
- /// </summary>
- private string weight = "";
- public string Weight
- {
- get { return weight; }
- set { weight = value; }
- }
- /// <summary>
- /// 创建人
- /// </summary>
- private string createName = "";
- public string CreateName
- {
- get { return createName; }
- set { createName = value; }
- }
- /// <summary>
- /// 创建时间
- /// </summary>
- private string createTime = "";
- public string CreateTime
- {
- get { return createTime; }
- set { createTime = value; }
- }
- /// <summary>
- /// 修改人
- /// </summary>
- private string updateName = "";
- public string UpdateName
- {
- get { return updateName; }
- set { updateName = value; }
- }
- /// <summary>
- /// 修改时间
- /// </summary>
- private string updateTime = "";
- public string UpdateTime
- {
- get { return updateTime; }
- set { updateTime = value; }
- }
- /// <summary>
- /// 删除人
- /// </summary>
- private string deleteName = "";
- public string DeleteName
- {
- get { return deleteName; }
- set { deleteName = value; }
- }
- /// <summary>
- /// 删除时间
- /// </summary>
- private string deleteTime = "";
- public string DeleteTime
- {
- get { return deleteTime; }
- set { deleteTime = value; }
- }
- /// <summary>
- /// 有效标志
- /// </summary>
- private string validflag = "";
- public string Validflag
- {
- get { return validflag; }
- set { validflag = value; }
- }
- /// <summary>
- /// 备注
- /// </summary>
- private string memo = "";
- public string Memo
- {
- get { return memo; }
- set { memo = value; }
- }
- }
- }
|