数据库小区表修改hasSchedule字段类型

dev-jingling
jingling 9 months ago
parent 30aec374a7
commit 3710519603

@ -9,7 +9,7 @@ import com.baomidou.mybatisplus.core.mapper.BaseMapper;
* V3.5
* https://www.jnpfsoft.com
* JNPF
* 2024-01-27
* 2024-01-31
*/
public interface HousingEstateMapper extends BaseMapper<HousingEstateEntity> {

@ -11,7 +11,7 @@ import com.baomidou.mybatisplus.core.conditions.query.QueryWrapper;
* V3.5
* https://www.jnpfsoft.com
* JNPF
* 2024-01-27
* 2024-01-31
*/
public interface HousingEstateService extends IService<HousingEstateEntity> {
List<HousingEstateEntity> getList(HousingEstatePagination housingEstatePagination);

@ -36,7 +36,7 @@ import jnpf.permission.entity.UserEntity;
* V3.5
* https://www.jnpfsoft.com
* JNPF
* 2024-01-27
* 2024-01-31
*/
@Service
public class HousingEstateServiceImpl extends ServiceImpl<HousingEstateMapper, HousingEstateEntity> implements HousingEstateService{

@ -34,7 +34,7 @@ import org.springframework.transaction.annotation.Transactional;
* @ V3.5
* @ https://www.jnpfsoft.com
* @ JNPF
* @ 2024-01-27
* @ 2024-01-31
*/
@Slf4j
@RestController

@ -9,7 +9,7 @@ import java.util.Date;
* @ V3.5
* @ https://www.jnpfsoft.com
* @ JNPF
* @ 2024-01-27
* @ 2024-01-31
*/
@Data
@TableName("nx_housing_estate")
@ -25,7 +25,7 @@ public class HousingEstateEntity {
@TableField(value = "LATITUDE" , updateStrategy = FieldStrategy.IGNORED)
private Double latitude;
@TableField(value = "HAS_SCHEDULE" , updateStrategy = FieldStrategy.IGNORED)
private Boolean hasSchedule;
private Integer hasSchedule;
@TableField(value = "RECYCLE_ADDRESS" , updateStrategy = FieldStrategy.IGNORED)
private String recycleAddress;
@TableField(value = "APPOINTMENT_TIME_START" , updateStrategy = FieldStrategy.IGNORED)

@ -10,7 +10,7 @@ import com.fasterxml.jackson.annotation.JsonProperty;
* @ V3.5
* @ https://www.jnpfsoft.com
* @ JNPF
* @ 2024-01-27
* @ 2024-01-31
*/
@Data
public class HousingEstateForm {
@ -26,22 +26,22 @@ public class HousingEstateForm {
/** 启用禁用 **/
@JsonProperty("enabledMark")
private Integer enabledMark;
/** 经度 **/
@JsonProperty("longitude")
private BigDecimal longitude;
/** 纬度 **/
@JsonProperty("latitude")
private BigDecimal latitude;
/** 经度 **/
@JsonProperty("longitude")
private BigDecimal longitude;
/** 定时定点回收 **/
@JsonProperty("hasSchedule")
private Integer hasSchedule;
/** 定点回收地址 **/
/** 回收地址 **/
@JsonProperty("recycleAddress")
private String recycleAddress;
/** 定点回收时间起 **/
/** 回收时间起 **/
@JsonProperty("appointmentTimeStart")
private String appointmentTimeStart;
/** 定点回收时间止 **/
/** 回收时间止 **/
@JsonProperty("appointmentTimeEnd")
private String appointmentTimeEnd;
/** 来源 **/

@ -11,7 +11,7 @@ import java.util.List;
* @ V3.5
* @ https://www.jnpfsoft.com
* @ JNPF
* @ 2024-01-27
* @ 2024-01-31
*/
@Data
public class HousingEstatePagination extends Pagination {

@ -59,17 +59,17 @@
</jnpf-form-tip-item>
</el-col>
<el-col :span="8">
<jnpf-form-tip-item label="定点回收地址" prop="recycleAddress">
<jnpf-form-tip-item label="回收地址" prop="recycleAddress">
<p>{{dataForm.recycleAddress}}</p>
</jnpf-form-tip-item>
</el-col>
<el-col :span="8">
<jnpf-form-tip-item label="定点回收时间起" prop="appointmentTimeStart">
<jnpf-form-tip-item label="回收时间起" prop="appointmentTimeStart">
<p>{{dataForm.appointmentTimeStart}}</p>
</jnpf-form-tip-item>
</el-col>
<el-col :span="8">
<jnpf-form-tip-item label="定点回收时间止" prop="appointmentTimeEnd">
<jnpf-form-tip-item label="回收时间止" prop="appointmentTimeEnd">
<p>{{dataForm.appointmentTimeEnd}}</p>
</jnpf-form-tip-item>
</el-col>

@ -90,7 +90,7 @@
</jnpf-form-tip-item>
</el-col>
<el-col :span="8">
<jnpf-form-tip-item label="定点回收地址" prop="recycleAddress">
<jnpf-form-tip-item label="回收地址" prop="recycleAddress">
<JnpfInput v-model="dataForm.recycleAddress"
@change="changeData('recycleAddress',-1)" placeholder="请输入" clearable
:style='{"width":"100%"}'>
@ -99,7 +99,7 @@
</el-col>
<el-col :span="8">
<jnpf-form-tip-item label="定点回收时间起" prop="appointmentTimeStart">
<jnpf-form-tip-item label="回收时间起" prop="appointmentTimeStart">
<JnpfTimePicker v-model="dataForm.appointmentTimeStart"
@change="changeData('appointmentTimeStart',-1)"
:startTime="time(false,1,1,'','HH:mm','')"
@ -110,7 +110,7 @@
</el-col>
<el-col :span="8">
<jnpf-form-tip-item label="定点回收时间止" prop="appointmentTimeEnd">
<jnpf-form-tip-item label="回收时间止" prop="appointmentTimeEnd">
<JnpfTimePicker v-model="dataForm.appointmentTimeEnd"
@change="changeData('appointmentTimeEnd',-1)"
:startTime="time(false,1,1,'','HH:mm','')"

Loading…
Cancel
Save