ComplianceServer/oldcode/Model/Entity/WX_BALANCE.cs

19 lines
496 B
C#

using System;
using System.ComponentModel.DataAnnotations;
using System.ComponentModel.DataAnnotations.Schema;
namespace WX.CRM.Model.Entity
{
[Table("UPDEV.WX_BALANCE")]
public class WX_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; }
}
}