wbcontentinfo.cs
来自「c#编写的汽车销售公司erp进销存系统」· CS 代码 · 共 68 行
CS
68 行
using System;
namespace CallCenter.Modules
{
/// <summary>
/// 工单处理内容信息
/// </summary>
public class WBContentInfo
{
public WBContentInfo()
{
//
// TODO: 在此处添加构造函数逻辑
//
}
private int _id;
private int _wbid;
private string _opid;
private string _opname;
private string _opdate;
private string _opcontent;
public int id{
set{_id = value;}
get{return _id;}
}
public int wbid
{
set{_wbid = value;}
get{return _wbid;}
}
public string opid
{
set{_opid = value;}
get{return _opid==null?"":_opid;}
}
public string opname
{
set{_opname = value;}
get{return _opname==null?"":_opname;}
}
public string opdate
{
set{_opdate = value;}
get{return _opdate==null?"":_opdate;}
}
public string opcontent
{
set{_opcontent = value;}
get{return _opcontent==null?"":_opcontent;}
}
public override string ToString()
{
// TODO: 添加 WBContentInfo.ToString 实现
return "id = "+this.id+" ; wbid = "+this.wbid+" ; opid = "+this.opid+" ; opname = "+this.opname+
" ; opdate = "+this.opdate+" ; opcontent = "+this.opcontent;
}
}
}
⌨️ 快捷键说明
复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?