| | |
| | | @TableField("company_summary") |
| | | private String companySummary; |
| | | |
| | | @ApiModelProperty(value = "营业执照") |
| | | @TableField("file_path") |
| | | private String filePath; |
| | | |
| | | @ApiModelProperty(value = "文件名称") |
| | | @TableField("file_name") |
| | | private String fileName; |
| | | |
| | | @ApiModelProperty(value = "是否删除") |
| | | @TableField("del_flag") |
| | | private Integer delFlag; |
| | |
| | | <if test="companySummary != null and companySummary !=''" > |
| | | company_summary = #{companySummary}, |
| | | </if> |
| | | <if test="filePath!=null and filePath != ''"> |
| | | file_path = #{filePath}, |
| | | </if> |
| | | <if test="fileName!=null and fileName != ''"> |
| | | file_name = #{fileName}, |
| | | </if> |
| | | <if test="delFlag != null and delFlag != ''" > |
| | | del_flag = #{delFlag}, |
| | | </if> |
| | |
| | | cs.`company_id`, |
| | | sc.`name` as company_name, |
| | | cs.`company_summary`, |
| | | cs.file_path, |
| | | cs.file_name, |
| | | cs.`del_flag`, |
| | | cs.`create_by`, |
| | | cs.`create_time`, |