Zxd.Core/code/Zxd.Entity/Zxd/WW_EXTUSER_RESID.cs

34 lines
712 B
C#

using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace Zxd.Entity.Zxd
{
[Table("WW_EXTUSER_RESID")]
public class WW_EXTUSER_RESID
{
[Key]
public string? Resid { get; set; }
[Key]
public string? Userid { get; set; }
public DateTime? Ctime { get; set; }
[Key]
public string? Deptcode { get; set; }
public int? Putnum { get; set; }
}
public class ExUserModel
{
public string? Resid { get; set; }
public string? Userid { get; set; }
public string? Deptcode { get; set; }
public DateTime? Ctime { get; set; }
}
}