ComplianceServer/oldcode/Model/Entity/QH_BALANCE.cs

20 lines
497 B
C#

using System;
using System.ComponentModel.DataAnnotations;
using System.ComponentModel.DataAnnotations.Schema;
namespace WX.CRM.Model.Entity
{
[Table("UPDEV.QH_BALANCE")]
public class QH_BALANCE
{
[Key]
public decimal PKID { get; set; }
public DateTime MONTH { get; set; }
public decimal OPERATOR { get; set; }
public DateTime CTIME { get; set; }
public string REMARK { get; set; }
public decimal FLAG { get; set; }
}
}