34 lines
1.1 KiB
C#
34 lines
1.1 KiB
C#
using System;
|
|
using System.Collections.Generic;
|
|
using System.Linq;
|
|
using System.Text;
|
|
using System.Threading.Tasks;
|
|
|
|
namespace CRM.Core.DTO.Hg
|
|
{
|
|
|
|
public class Hg_CheckQuality_Notice
|
|
{
|
|
public int id { get; set; }
|
|
|
|
public string NoticeNo { get; set; }
|
|
public DateTime NoticeDate { get; set; }
|
|
public string FromDept { get; set; }
|
|
public string FromDeptName { get; set; }
|
|
public string ToEid { get; set; }
|
|
public string ToDept { get; set; }
|
|
public string ToDeptName { get; set; }
|
|
public string Content { get; set; }
|
|
public int NoticeCreator { get; set; }
|
|
public string NoticeCreatorName { get; set; }
|
|
public DateTime NoticeCtime { get; set; }
|
|
public string PunishNo { get; set; }
|
|
public string PunishContent { get; set; }
|
|
public int? PunishCreator { get; set; }
|
|
public string PunishCreatorName { get; set; }
|
|
public DateTime? PunishCtime { get; set; }
|
|
public List<Hg_CheckQuality_NoticeSign_Dto> Hg_CheckQuality_NoticeSigns { get; set; }
|
|
|
|
}
|
|
}
|