业务备注
This commit is contained in:
@@ -0,0 +1,52 @@
|
||||
package com.cool.store.entity;
|
||||
|
||||
import lombok.Data;
|
||||
|
||||
import javax.persistence.*;
|
||||
import java.util.Date;
|
||||
|
||||
/**
|
||||
* 阶段注释表
|
||||
*/
|
||||
@Data
|
||||
@Entity
|
||||
@Table(name = "xfsg_shop_stage_remark_info")
|
||||
public class ShopStageRemarkInfoDO {
|
||||
|
||||
@Id
|
||||
@Column(name = "id")
|
||||
private Long id;
|
||||
|
||||
@Column(name = "shop_id")
|
||||
private Long shopId;
|
||||
|
||||
@Column(name = "shop_sub_stage")
|
||||
private Integer shopSubStage;
|
||||
|
||||
@Column(name = "shop_sub_stage_status")
|
||||
private Integer shopSubStageStatus;
|
||||
|
||||
@Column(name = "line_id")
|
||||
private Long lineId;
|
||||
|
||||
@Column(name = "workflow_sub_stage")
|
||||
private Integer workflowSubStage;
|
||||
|
||||
@Column(name = "workflow_sub_stage_status")
|
||||
private Integer workflowSubStageStatus;
|
||||
|
||||
@Column(name = "remark")
|
||||
private String remark;
|
||||
|
||||
@Column(name = "create_time")
|
||||
private Date createTime;
|
||||
|
||||
@Column(name = "update_time")
|
||||
private Date updateTime;
|
||||
|
||||
@Column(name = "create_user_id")
|
||||
private String createUserId;
|
||||
|
||||
@Column(name = "update_user_id")
|
||||
private String updateUserId;
|
||||
}
|
||||
@@ -0,0 +1,28 @@
|
||||
package com.cool.store.request;
|
||||
|
||||
import io.swagger.annotations.ApiModelProperty;
|
||||
import lombok.Data;
|
||||
|
||||
/**
|
||||
* @Author: WangShuo
|
||||
* @Date: 2025/05/27/15:02
|
||||
* @Version 1.0
|
||||
* @注释:
|
||||
*/
|
||||
@Data
|
||||
public class BusinessRemarkRequest {
|
||||
@ApiModelProperty("使用-资质审核,意向金,意向协议")
|
||||
private Long lineId;
|
||||
@ApiModelProperty("使用-资质审核,意向金,意向协议:流程子阶段")
|
||||
private Integer workflowSubStage;
|
||||
@ApiModelProperty("使用-资质审核,意向金,意向协议:流程子阶段状态")
|
||||
private Integer workflowSubStageStatus;
|
||||
@ApiModelProperty("使用-除了资质审核,意向金,意向协议:店铺id")
|
||||
private Long shopId;
|
||||
@ApiModelProperty("使用-除了资质审核,意向金,意向协议:子阶段")
|
||||
private Integer subStage;
|
||||
@ApiModelProperty("使用-除了资质审核,意向金,意向协议:阶段状态")
|
||||
private Integer subStageStatus;
|
||||
@ApiModelProperty("业务备注")
|
||||
private String businessRemark;
|
||||
}
|
||||
Reference in New Issue
Block a user