25 lines
525 B
C#
25 lines
525 B
C#
using System;
|
|
using System.Collections.Generic;
|
|
using System.ComponentModel.DataAnnotations;
|
|
using System.ComponentModel.DataAnnotations.Schema;
|
|
using System.Linq;
|
|
using System.Threading.Tasks;
|
|
|
|
namespace model
|
|
{
|
|
[Table("ww_dept")]
|
|
public class ww_dept
|
|
{
|
|
[Key]
|
|
public int deptid { get; set; }
|
|
[Key]
|
|
public string corpid { get; set; }
|
|
|
|
public string deptname { get; set; }
|
|
|
|
public int parentid { get; set; }
|
|
|
|
public string? orderseq { get; set; }
|
|
}
|
|
}
|