tijian_tieying/web/dccdc.Models/jingfeilbModel.cs

19 lines
457 B
C#
Raw Normal View History

2025-02-20 12:14:39 +08:00
using System;
using System.Collections.Generic;
using System.ComponentModel.DataAnnotations;
using System.Linq;
using System.Text;
namespace dccdc.Models
{
public class jingfeilbModel
{
public int id { get; set; }
[Required(ErrorMessage = "不能为空!")]
public string jflbmc { get; set; }
public string tjr { get; set; }
public DateTime tjsj { get; set; }
public int zt { get; set; }
}
}