Commit 0b8db80c by zhangxingmin

push

parent 6f14c1eb
......@@ -2,6 +2,63 @@ package com.yd.csf.feign.response.conditiontype;
import lombok.Data;
import java.time.LocalDateTime;
@Data
public class ApiConditionTypeDetailResponse {
/**
* 主键ID
*/
private Long id;
/**
* 条件类型表唯一业务ID
*/
private String conditionTypeBizId;
/**
* 条件类型编码(一个条件类型编码可能包含多个条件)
*/
private String code;
/**
* 条件类型名称
*/
private String name;
/**
* 状态(0:停用 1:启用)
*/
private Integer status;
/**
* 通用备注
*/
private String remark;
/**
* 删除标识: 0-正常, 1-删除
*/
private Integer isDeleted;
/**
* 创建人ID
*/
private String creatorId;
/**
* 更新人ID
*/
private String updaterId;
/**
* 创建时间
*/
private LocalDateTime createTime;
/**
* 更新时间
*/
private LocalDateTime updateTime;
}
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment