using System; using System.Collections.Generic; using System.Linq; using System.Text; using System.Threading.Tasks; namespace DS.WMS.Core.Code.Dtos { /// /// 租户表单设置公共标识请求实体 /// public class CodeFormSetPublicStatusReq { /// /// 主键Id /// public long Id { get; set; } /// /// 是否公共标识 /// public bool IsPublic { get; set; } = false; } }