22 lines
700 B
C#
22 lines
700 B
C#
using System;
|
|
using System.ComponentModel.DataAnnotations;
|
|
|
|
namespace CRM.Core.Model.Entity
|
|
{
|
|
public class Mon_OrderPayPrice
|
|
{
|
|
[Key]
|
|
public int id { get; set; }
|
|
public int orderid { get; set; }
|
|
public DateTime month { get; set; }
|
|
public long szzyorderid { get; set; }
|
|
public string resid { get; set; }
|
|
public string cname { get; set; }
|
|
public string softusername { get; set; }
|
|
public string subproductname { get; set; }
|
|
public DateTime otime { get; set; }
|
|
public decimal arrivalpay { get; set; }
|
|
public DateTime arrivaltime { get; set; }
|
|
public string companycode { get; set; }
|
|
}
|
|
} |