29 lines
239 B
C#
29 lines
239 B
C#
|
|
|
|||
|
|
namespace YiLiao.JingMaiLiuZhiZhen
|
|||
|
|
{
|
|||
|
|
public class AIKaoHeData
|
|||
|
|
{
|
|||
|
|
//序号
|
|||
|
|
|
|||
|
|
public int id;
|
|||
|
|
|
|||
|
|
//提示
|
|||
|
|
|
|||
|
|
public string txt;
|
|||
|
|
|
|||
|
|
//AI
|
|||
|
|
|
|||
|
|
public string AI;
|
|||
|
|
|
|||
|
|
//状态
|
|||
|
|
|
|||
|
|
public string state;
|
|||
|
|
|
|||
|
|
//备注
|
|||
|
|
|
|||
|
|
public string remark;
|
|||
|
|
|
|||
|
|
|
|||
|
|
}
|
|||
|
|
}
|