TG.WXCRM.V4/Model/Entity/WX_TS_QUNPICI.cs

17 lines
409 B
C#

using System;
using System.ComponentModel.DataAnnotations;
using System.ComponentModel.DataAnnotations.Schema;
namespace WX.CRM.Model.Entity
{
[Table("UPDEV.WX_TS_QUNPICI")]
public class WX_TS_QUNPICI
{
[Key]
public decimal PICI { get; set; }
public string ALIAS { get; set; }
public string MSG { get; set; }
public DateTime CTIME { get; set; }
}
}