20 lines
505 B
C#
20 lines
505 B
C#
using System;
|
|
using System.ComponentModel.DataAnnotations;
|
|
using System.ComponentModel.DataAnnotations.Schema;
|
|
|
|
namespace WX.CRM.Model.Entity
|
|
{
|
|
[Table("UPDEV.WX_BALANCE_LOG")]
|
|
public class WX_BALANCE_LOG
|
|
{
|
|
[Key]
|
|
public decimal PKID { get; set; }
|
|
public DateTime MONTH { get; set; }
|
|
public decimal TYPE { get; set; }
|
|
public decimal OPERATOR { get; set; }
|
|
public DateTime CTIME { get; set; }
|
|
public string REMARK { get; set; }
|
|
|
|
}
|
|
}
|