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.

32 lines
768 B
C#

5 months ago
using System;
using System.Collections.Generic;
using System.ComponentModel;
using System.Linq;
using System.Text;
using Newtonsoft.Json;
using SOA.Persistent;
namespace SlabHandle
{
[Serializable, Table("TB_CNF_C2")]
public class TB_CNF_C2
{
//主键
[Persistent("ID"), DisplayName("主键")]
public string ID { get; set; }
//可用仓库
[Persistent("WAR_VAL"), DisplayName("可用仓库")]
public string WAR_VAL { get; set; }
//是否启动
[Persistent("SWITCH"), DisplayName("是否启动")]
public string SWITCH { get; set; }
//台式炉是否启动
[Persistent("TSWITCH"), DisplayName("是否启动")]
public string TSWITCH { get; set; }
}
}