31 lines
1.1 KiB
C#
31 lines
1.1 KiB
C#
|
|
using System;
|
|||
|
|
using System.Collections.Generic;
|
|||
|
|
using System.ComponentModel.DataAnnotations;
|
|||
|
|
using System.Linq;
|
|||
|
|
using System.Text;
|
|||
|
|
|
|||
|
|
namespace dccdc.Models
|
|||
|
|
{
|
|||
|
|
public class charge_maintModel
|
|||
|
|
{
|
|||
|
|
public int id { get; set; }
|
|||
|
|
[Required(ErrorMessage = "不能为空!")]
|
|||
|
|
public string begin_num { get; set; }
|
|||
|
|
[Required(ErrorMessage = "不能为空!")]
|
|||
|
|
public string end_num { get; set; }
|
|||
|
|
[Required(ErrorMessage = "不能为空!")]
|
|||
|
|
public string provide_person { get; set; }
|
|||
|
|
public string status { get; set; }
|
|||
|
|
[Required(ErrorMessage = "不能为空!")]
|
|||
|
|
public string receive_person { get; set; }
|
|||
|
|
public string curr_time { get; set; }
|
|||
|
|
public string receive_time { get; set; }
|
|||
|
|
public string over_time { get; set; }
|
|||
|
|
public decimal total_money { get; set; }
|
|||
|
|
public string normal_cou { get; set; }
|
|||
|
|
public string abnormal_cou { get; set; }
|
|||
|
|
[Required(ErrorMessage = "不能为空!")]
|
|||
|
|
public string invoice_type { get; set; }
|
|||
|
|
}
|
|||
|
|
}
|