28 lines
745 B
C#
28 lines
745 B
C#
using System;
|
|
using System.Collections.Generic;
|
|
using System.ComponentModel.DataAnnotations;
|
|
using System.Linq;
|
|
using System.Text;
|
|
|
|
namespace dccdc.Models
|
|
{
|
|
public class xmjingfeiModel
|
|
{
|
|
public int id { get; set; }
|
|
public int lbid { get; set; }
|
|
public string xmid { get; set; }
|
|
[Required(ErrorMessage = "不能为空!")]
|
|
public string xmmc { get; set; }
|
|
public string bkdw { get; set; }
|
|
public decimal srje { get; set; }
|
|
public decimal hfje { get; set; }
|
|
public string tjr { get; set; }
|
|
public DateTime tjsj { get; set; }
|
|
public int zt { get; set; }
|
|
|
|
public decimal syjf { get; set; }
|
|
|
|
public decimal sqje { get; set; }
|
|
}
|
|
}
|