liuying
2025-09-24 6efa5f6ca7536a37e3af3592bb42db63bcb8371d
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
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; }
 
    }
}