1234567891011121314151617181920212223242526272829303132333435363738 |
- package cn.cslg.pas.domain.business;
- import cn.cslg.pas.domain.BaseEntity;
- import com.baomidou.mybatisplus.annotation.TableField;
- import com.baomidou.mybatisplus.annotation.TableName;
- import lombok.Data;
- /**
- * 无效事务与案件阶段关联表
- * @Author xiexiang
- * @Date 2023/12/22
- */
- @Data
- @TableName("report_affair_case_phase")
- public class ReportAffairCasePhase extends BaseEntity<ReportAffairCasePhase> {
- /**
- * 流程名称
- */
- @TableField(value = "flow_name")
- private String flowName;
- /**
- * 案件阶段
- */
- @TableField(value = "case_phase")
- private String casePhase;
- /**
- * 案件子阶段
- */
- @TableField(value = "case_child_phase")
- private String caseChildPhase;
- /**
- * 流程类型
- */
- @TableField(value = "flow_type")
- private Integer flowType;
- }
|