城市接口相关修改
parent
d6c49d3643
commit
019d87cb7a
@ -0,0 +1,33 @@
|
||||
package com.glxp.api.req.stat;
|
||||
|
||||
import com.baomidou.mybatisplus.annotation.IdType;
|
||||
import com.baomidou.mybatisplus.annotation.TableField;
|
||||
import com.baomidou.mybatisplus.annotation.TableId;
|
||||
import lombok.Data;
|
||||
|
||||
import java.util.Date;
|
||||
|
||||
@Data
|
||||
public class StatCityCorpRequest {
|
||||
|
||||
|
||||
private String regionCode;
|
||||
private Integer id;
|
||||
|
||||
private String cityCode;
|
||||
|
||||
private String cityName;
|
||||
|
||||
private Integer count;
|
||||
|
||||
private Integer cptCount;
|
||||
|
||||
private Integer rate;
|
||||
|
||||
private Integer level;
|
||||
private String pCityCode;
|
||||
|
||||
private Date updateTime;
|
||||
|
||||
private String remark;
|
||||
}
|
Loading…
Reference in New Issue