1234567891011121314151617181920212223242526272829303132333435363738394041 |
- using System;
- using System.Collections.Generic;
- using System.ComponentModel.DataAnnotations;
- using System.Linq;
- using System.Text;
- using System.Threading.Tasks;
- namespace Ant.Core.SqlServer.BaseEntities
- {
-
-
-
- public class BaseEntity
- {
-
-
-
- [Required]
- public DateTime CreateDT { set; get; } = DateTime.Now;
-
-
-
- [MaxLength(50)]
- [Required(AllowEmptyStrings = true)]
- public string CreateBY { set; get; } = string.Empty;
-
-
-
- [Required]
- public DateTime ModifyDT { set; get; } = DateTime.Now;
-
-
-
- [MaxLength(50)]
- [Required(AllowEmptyStrings = true)]
- public string ModifyBY { set; get; } = string.Empty;
- }
- }
|