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

32 lines
769 B
C#

namespace WX.CRM.Model.Entity
{
using System;
using System.ComponentModel.DataAnnotations;
using System.ComponentModel.DataAnnotations.Schema;
[Table("UPDEV.QH_MONTHLYSTATEMENT")]
public partial class QH_MONTHLYSTATEMENT
{
[Key]
public decimal PKID { get; set; }
public decimal MONTHCODE { get; set; }
public DateTime OPTIME { get; set; }
public decimal OPUSER { get; set; }
[StringLength(1000)]
public string OPREMARK { get; set; }
public decimal? BACKUSER { get; set; }
public DateTime? BACKTIME { get; set; }
public decimal OPTYPE { get; set; }
public decimal? MONTHLYPKID { get; set; }
public decimal? BALANCTSTEP { get; set; }
}
}