| 1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253 |
- using System;
- using System.Text;
- namespace com.hnshituo.pur.vo
- {
- [Serializable]
- public class SuppJl
- {
- /** WM供应商编码 */
- private string unitcode;
- public string Unitcode
- {
- get { return unitcode; }
- set { unitcode = value; }
- }
- /** WM供应商名称 */
- private string unitname;
- public string Unitname
- {
- get { return unitname; }
- set { unitname = value; }
- }
- /** PMS供应商编码 */
- private string erpcode;
- public string Erpcode
- {
- get { return erpcode; }
- set { erpcode = value; }
- }
- /** PMS数据类型 */
- private string recordtype;
- public string Recordtype
- {
- get { return recordtype; }
- set { recordtype = value; }
- }
- /** 更新时间 */
- private DateTime? uptime;
- public DateTime? Uptime
- {
- get { return uptime; }
- set { uptime = value; }
- }
- }
- }
|