Blame view

HHECS.DAQHandle/Models/Project.cs 620 Bytes
唐召明 authored
1
using FreeSql.DataAnnotations;
唐召明 authored
2
using HHECS.DataContract;
李璐瑶 authored
3
4
5

namespace HHECS.DAQHandle.Models
{
唐召明 authored
6
    [Table(Name = "daq_project")]
唐召明 authored
7
    public class Project: BaseEntity<Guid>
李璐瑶 authored
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
    {
        public string Name { get; set; }
        public string Code { get; set; }
        /// <summary>
        /// 创建时间
        /// </summary>
        public DateTime? CreateTime { get; set; }

        /// <summary>
        /// 修改时间
        /// </summary>
        public DateTime? UpdateTime { get; set; }


        /// <summary>
        /// 备注
        /// </summary>
        public string Remark { get; set; }

    }
}