28 lines
569 B
C#
28 lines
569 B
C#
namespace ZR.Model.MES.wms.POJO.VO
|
|
{
|
|
public class BaseAudit
|
|
{
|
|
/**
|
|
* 创建者
|
|
*/
|
|
public long CreateBy { get; set; }
|
|
|
|
/**
|
|
* 创建时间
|
|
*/
|
|
// @JsonFormat(pattern = "yyyy-MM-dd HH:mm:ss")
|
|
public DateTime? CreateTime { get; set; }
|
|
|
|
/**
|
|
* 更新者
|
|
*/
|
|
public long UpdateBy { get; set; }
|
|
|
|
/**
|
|
* 更新时间
|
|
*/
|
|
// @JsonFormat(pattern = "yyyy-MM-dd HH:mm:ss")
|
|
public DateTime? UpdateTime { get; set; }
|
|
}
|
|
}
|