ReportAffairCasePhase.java 849 B

1234567891011121314151617181920212223242526272829303132333435363738
  1. package cn.cslg.pas.domain.business;
  2. import cn.cslg.pas.domain.BaseEntity;
  3. import com.baomidou.mybatisplus.annotation.TableField;
  4. import com.baomidou.mybatisplus.annotation.TableName;
  5. import lombok.Data;
  6. /**
  7. * 无效事务与案件阶段关联表
  8. * @Author xiexiang
  9. * @Date 2023/12/22
  10. */
  11. @Data
  12. @TableName("report_affair_case_phase")
  13. public class ReportAffairCasePhase extends BaseEntity<ReportAffairCasePhase> {
  14. /**
  15. * 流程名称
  16. */
  17. @TableField(value = "flow_name")
  18. private String flowName;
  19. /**
  20. * 案件阶段
  21. */
  22. @TableField(value = "case_phase")
  23. private String casePhase;
  24. /**
  25. * 案件子阶段
  26. */
  27. @TableField(value = "case_child_phase")
  28. private String caseChildPhase;
  29. /**
  30. * 流程类型
  31. */
  32. @TableField(value = "flow_type")
  33. private Integer flowType;
  34. }