parent
01287aa2af
commit
aab8169588
29 changed files with 405 additions and 49 deletions
@ -0,0 +1,30 @@ |
|||||||
|
package com.daqing.financial.guarantee.model.request; |
||||||
|
|
||||||
|
import io.swagger.annotations.ApiModelProperty; |
||||||
|
import lombok.Data; |
||||||
|
|
||||||
|
import java.util.Date; |
||||||
|
|
||||||
|
|
||||||
|
/** |
||||||
|
* @Author chen |
||||||
|
* @DATE 2020/11/16 20:16 |
||||||
|
* @Version 1.0 |
||||||
|
* 业务申请列表导出 |
||||||
|
*/ |
||||||
|
@Data |
||||||
|
public class ProcessManageRequest { |
||||||
|
|
||||||
|
@ApiModelProperty("流程管理模板id") |
||||||
|
private Integer id; |
||||||
|
|
||||||
|
@ApiModelProperty("图标") |
||||||
|
private String iconImg; |
||||||
|
|
||||||
|
@ApiModelProperty("审批说明") |
||||||
|
private String approvalInstructions; |
||||||
|
|
||||||
|
@ApiModelProperty("更新时间") |
||||||
|
private Date updateTime; |
||||||
|
|
||||||
|
} |
@ -0,0 +1,24 @@ |
|||||||
|
package com.daqing.financial.guarantee.model.request; |
||||||
|
|
||||||
|
import io.swagger.annotations.ApiModelProperty; |
||||||
|
import lombok.Data; |
||||||
|
|
||||||
|
import java.util.Date; |
||||||
|
import java.util.List; |
||||||
|
|
||||||
|
|
||||||
|
/** |
||||||
|
* @Author chen |
||||||
|
* @DATE 2020/11/16 20:16 |
||||||
|
* @Version 1.0 |
||||||
|
* 业务申请列表导出 |
||||||
|
*/ |
||||||
|
@Data |
||||||
|
public class UpdateUserVisualReq { |
||||||
|
|
||||||
|
@ApiModelProperty("流程管理模板id") |
||||||
|
private Integer id; |
||||||
|
|
||||||
|
@ApiModelProperty("可见人id") |
||||||
|
private List<Integer> ids; |
||||||
|
} |
@ -1,34 +1,94 @@ |
|||||||
package com.daqing.financial.guarantee.model.response; |
package com.daqing.financial.guarantee.model.response; |
||||||
|
|
||||||
|
import com.alibaba.excel.annotation.ExcelIgnore; |
||||||
import com.alibaba.excel.annotation.ExcelProperty; |
import com.alibaba.excel.annotation.ExcelProperty; |
||||||
import com.alibaba.excel.metadata.BaseRowModel; |
import com.alibaba.excel.metadata.BaseRowModel; |
||||||
|
import com.baomidou.mybatisplus.annotation.IdType; |
||||||
|
import com.baomidou.mybatisplus.annotation.TableId; |
||||||
|
import com.daqing.framework.utils.excel.ApprovalStatusConverter; |
||||||
|
import com.daqing.framework.utils.excel.BusinessStatusConverter; |
||||||
|
import com.daqing.framework.utils.excel.OperatingStatusConverter; |
||||||
import com.fasterxml.jackson.annotation.JsonFormat; |
import com.fasterxml.jackson.annotation.JsonFormat; |
||||||
import io.swagger.annotations.ApiModelProperty; |
import io.swagger.annotations.ApiModelProperty; |
||||||
import lombok.Data; |
import lombok.Data; |
||||||
import lombok.ToString; |
import lombok.ToString; |
||||||
|
|
||||||
import java.io.Serializable; |
import java.io.Serializable; |
||||||
|
import java.math.BigDecimal; |
||||||
import java.util.Date; |
import java.util.Date; |
||||||
|
|
||||||
@Data |
@Data |
||||||
@ToString |
@ToString |
||||||
public class DgNoticeListResponse extends BaseRowModel implements Serializable { |
public class DgNoticeListResponse extends BaseRowModel implements Serializable { |
||||||
|
|
||||||
/** |
|
||||||
* 业务编号 |
|
||||||
*/ |
|
||||||
@ExcelProperty(value = "业务编号",index = 0) |
|
||||||
@ApiModelProperty(value = "业务编号") |
@ApiModelProperty(value = "业务编号") |
||||||
private String businessCode; |
private String businessCode; |
||||||
|
|
||||||
|
|
||||||
/** |
|
||||||
* 申请时间 |
|
||||||
*/ |
|
||||||
@ExcelProperty(value = "申请日期",index = 6) |
|
||||||
@JsonFormat(pattern = "yyyy-MM-dd", timezone = "GMT+8") |
@JsonFormat(pattern = "yyyy-MM-dd", timezone = "GMT+8") |
||||||
@ApiModelProperty(value = "申请时间") |
@ApiModelProperty(value = "申请时间") |
||||||
private Date createTime; |
private Date createTime; |
||||||
|
|
||||||
|
@ApiModelProperty(value = "id") |
||||||
|
@TableId(value = "id", type = IdType.AUTO) |
||||||
|
private Integer id; |
||||||
|
|
||||||
|
@ApiModelProperty(value = "企业id") |
||||||
|
private Integer companyId; |
||||||
|
|
||||||
|
@ExcelIgnore |
||||||
|
@ApiModelProperty(value = "业务id") |
||||||
|
private Integer businessId; |
||||||
|
|
||||||
|
@ExcelIgnore |
||||||
|
@ApiModelProperty(value = "角色id") |
||||||
|
private Integer roleId; |
||||||
|
|
||||||
|
@ApiModelProperty(value = "提单人id") |
||||||
|
private Integer presenterId; |
||||||
|
|
||||||
|
@ApiModelProperty(value = "客户名称") |
||||||
|
private String name; |
||||||
|
|
||||||
|
@ApiModelProperty(value = "联系电话") |
||||||
|
private String phone; |
||||||
|
|
||||||
|
@ApiModelProperty(value = "业务类型") |
||||||
|
private String businessType; |
||||||
|
|
||||||
|
@ApiModelProperty(value = "申请额度") |
||||||
|
private BigDecimal applyAmount; |
||||||
|
|
||||||
|
@ApiModelProperty(value = "申请期限") |
||||||
|
private String applyTime; |
||||||
|
|
||||||
|
@ApiModelProperty("审核状态") |
||||||
|
private Integer status; |
||||||
|
|
||||||
|
@ApiModelProperty("业务状态") |
||||||
|
private Integer businessStatus; |
||||||
|
|
||||||
|
@ApiModelProperty("操作状态") |
||||||
|
private Integer operatingStatus; |
||||||
|
|
||||||
|
//--------------工作会需要内容--------------------------
|
||||||
|
|
||||||
|
@ApiModelProperty("A角") |
||||||
|
private Integer aUserId; |
||||||
|
|
||||||
|
@ApiModelProperty("B角") |
||||||
|
private Integer bUserId; |
||||||
|
|
||||||
|
@ApiModelProperty("法规部领导") |
||||||
|
private Integer iUserId; |
||||||
|
|
||||||
|
@ApiModelProperty("资产部领导") |
||||||
|
private Integer assUserId; |
||||||
|
|
||||||
|
@ApiModelProperty("信息部领导") |
||||||
|
private Integer mUserId; |
||||||
|
//-------------------结束-----------------------------
|
||||||
|
|
||||||
|
@ApiModelProperty("业务管理模块id") |
||||||
|
private Integer modelId; |
||||||
|
|
||||||
} |
} |
||||||
|
@ -0,0 +1,31 @@ |
|||||||
|
package com.daqing.framework.domain.hrms; |
||||||
|
|
||||||
|
import com.baomidou.mybatisplus.annotation.IdType; |
||||||
|
import com.baomidou.mybatisplus.annotation.TableField; |
||||||
|
import com.baomidou.mybatisplus.annotation.TableId; |
||||||
|
import com.baomidou.mybatisplus.annotation.TableName; |
||||||
|
import com.fasterxml.jackson.annotation.JsonInclude; |
||||||
|
import io.swagger.annotations.ApiModelProperty; |
||||||
|
import lombok.Data; |
||||||
|
|
||||||
|
import java.io.Serializable; |
||||||
|
import java.util.Date; |
||||||
|
import java.util.List; |
||||||
|
|
||||||
|
/** |
||||||
|
* 记录部门信息 |
||||||
|
* |
||||||
|
* @author gongsj |
||||||
|
* @email gongsj@gmail.com |
||||||
|
* @date 2020-09-07 17:12:14 |
||||||
|
*/ |
||||||
|
@Data |
||||||
|
@TableName("hrms_dept") |
||||||
|
public class Login implements Serializable { |
||||||
|
private static final long serialVersionUID = 1L; |
||||||
|
|
||||||
|
private String openid; |
||||||
|
|
||||||
|
private String session_key; |
||||||
|
|
||||||
|
} |
Loading…
Reference in new issue