12345678910111213141516171819202122232425262728293031323334 |
- using System;
- using System.Collections.Generic;
- using System.Linq;
- using System.Text;
- using System.Threading.Tasks;
- namespace OASystem.Domain.Entities.Groups
- {
-
-
-
- public class Grp_EnterExitCostDraftPermission : EntityBase
- {
-
-
-
- [SugarColumn(ColumnDescription = "草稿Id", IsNullable = true, ColumnDataType = "int")]
- public int DraftId { get; set; }
-
-
-
- [SugarColumn(ColumnDescription = "用户Id", IsNullable = true, ColumnDataType = "int")]
- public int UserId { get; set; }
-
-
-
- [SugarColumn(ColumnDescription = "权限功能ID(1:查看;2:新增;3:编辑;4:删除;5:下载;)", IsNullable = true, ColumnDataType = "int")]
- public int Permission { get; set; }
- }
- }
|