ComplianceServer/oldcode/Core.Model/Entity/Mon_Balance.cs

24 lines
746 B
C#

using System;
using System.ComponentModel.DataAnnotations;
namespace CRM.Core.Model.Entity
{
public class Mon_Balance
{
[Key]
public int Id { get; set; }
public DateTime Month { get; set; }
public string CompanyCode { get; set; }
public string CompanyName { get; set; }
public DateTime CTime { get; set; }
public decimal arrivalpay { get; set; }
public int ordercount { get; set; }
public decimal payprice { get; set; }
public int paycount { get; set; }
public decimal refundprice { get; set; }
public int refundcount { get; set; }
public decimal orderpayprice { get; set; }
public int orderpaycount { get; set; }
}
}