using Microsoft.EntityFrameworkCore; using System; using System.Collections.Generic; using System.ComponentModel.DataAnnotations; using System.ComponentModel.DataAnnotations.Schema; using System.Linq; using System.Text; using System.Threading.Tasks; namespace iWare.Wms.Core.Entity.SCADA { [Table("TeamsAndGroups")] [Comment("班组信息表")] public class TeamsAndGroups : DEntityBase { [Comment("班组代码")] [MaxLength(32)] public string TeamsAndGroupsCode { get; set; } [Comment("班组名称")] [MaxLength(32)] public string TeamsAndGroupsName { get; set; } } }