1234567891011121314151617181920212223242526272829303132333435 |
- using SqlSugar;
- using System;
- using System.Collections.Generic;
- using System.Linq;
- using System.Text;
- using System.Threading.Tasks;
- namespace WMS.BZModels.Models.UserCenterManager
- {
- [Tenant("usercenter")]
- [SugarTable("Acl_UserGroup")]
- public partial class AclUserGroup : BaseModel
- {
-
- /// <summary>
- /// IsStop
- /// </summary>
- [SugarColumn(ColumnDataType = "int", IsNullable = false)]
- public int IsStop { get; set; }
- /// <summary>
- /// Code
- /// </summary>
- [SugarColumn(ColumnDataType = "nvarchar", Length = 50, IsNullable = false)]
- public string Code { get; set; }
- /// <summary>
- /// Name
- /// </summary>
- [SugarColumn(ColumnDataType = "nvarchar", Length = 100, IsNullable = false)]
- public string Name { get; set; }
-
- }
- }
|