You cannot select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

60 lines
1.4 KiB
C#

11 months ago
using System;
using HcUtility.Core;
using Newtonsoft.Json;
namespace DSWeb.Areas.CommMng.Models
{
[JsonObject]
public class SysChildmb : ModelObjectBillBody
{//使用中的工作流状态
private string _GID = string.Empty;
private string _BSNO = string.Empty;
private string _CHILDNAME = string.Empty;
private string _CHILDNO = string.Empty;
private string _REMARK = string.Empty;
[ModelDB(MDBType = ModelDBOprationType.All, IsPrimary = true)]
public string GID
{
get { return _GID; }
set { _GID = value; }
}
[ModelDB]
public string BSNO
{
get { return _BSNO; }
set { _BSNO = value; }
}
[ModelDB]
public string CHILDNAME
{
get { return _CHILDNAME; }
set { _CHILDNAME = value; }
}
[ModelDB]
public string CHILDNO
{
get { return _CHILDNO; }
set { _CHILDNO = value; }
}
[ModelDB]
public string REMARK
{
get { return _REMARK; }
set { _REMARK = value; }
}
public SysChildmb()
{
TableName = "tSys_child";
}
public override string GetBillNoFieldName()
{
return "BSNO";
}
}
}