22 lines
572 B
C#
22 lines
572 B
C#
using System;
|
|
using System.Collections.Generic;
|
|
using System.ComponentModel.DataAnnotations;
|
|
using System.Linq;
|
|
using System.Text;
|
|
|
|
namespace dccdc.Models
|
|
{
|
|
public class wzlbModel
|
|
{
|
|
public int id { get; set; }
|
|
[Required(ErrorMessage = "不能为空!")]
|
|
public string lbmc { get; set; }
|
|
public int glksid { get; set; }
|
|
public string glksmc { get; set; }
|
|
public string bz { get; set; }
|
|
public string tjr { get; set; }
|
|
public DateTime tjsj { get; set; }
|
|
public int zt { get; set; }
|
|
}
|
|
}
|