12345678910111213141516171819 |
- using System;
- using System.Collections.Generic;
- namespace MySystem.JavaModels
- {
- public partial class SysPost
- {
- public long PostId { get; set; }
- public string PostCode { get; set; }
- public string PostName { get; set; }
- public int PostSort { get; set; }
- public string Remark { get; set; }
- public string DelFlag { get; set; }
- public DateTime? CreateTime { get; set; }
- public string CreateBy { get; set; }
- public DateTime? UpdateTime { get; set; }
- public string UpdateBy { get; set; }
- }
- }
|