完善合同管理;
新增结算管理
This commit is contained in:
@@ -0,0 +1,53 @@
|
||||
package com.gxwebsoft.tower.entity;
|
||||
|
||||
import com.baomidou.mybatisplus.annotation.IdType;
|
||||
import com.baomidou.mybatisplus.annotation.TableId;
|
||||
import java.time.LocalDateTime;
|
||||
import com.baomidou.mybatisplus.annotation.TableLogic;
|
||||
import java.io.Serializable;
|
||||
import io.swagger.annotations.ApiModel;
|
||||
import io.swagger.annotations.ApiModelProperty;
|
||||
import lombok.Data;
|
||||
import lombok.EqualsAndHashCode;
|
||||
|
||||
/**
|
||||
* 合同结算规则
|
||||
*
|
||||
* @author 科技小王子
|
||||
* @since 2023-06-11 13:48:41
|
||||
*/
|
||||
@Data
|
||||
@EqualsAndHashCode(callSuper = false)
|
||||
@ApiModel(value = "TowerContractSettleRule对象", description = "合同结算规则")
|
||||
public class TowerContractSettleRule implements Serializable {
|
||||
private static final long serialVersionUID = 1L;
|
||||
|
||||
@TableId(value = "contract_settle_rule_id", type = IdType.AUTO)
|
||||
private Integer contractSettleRuleId;
|
||||
|
||||
@ApiModelProperty(value = "合同ID")
|
||||
private Integer contractId;
|
||||
|
||||
@ApiModelProperty(value = "结算开始日期")
|
||||
private String startDate;
|
||||
|
||||
@ApiModelProperty(value = "结算结束日期")
|
||||
private String endDate;
|
||||
|
||||
@ApiModelProperty(value = "所有人")
|
||||
private Integer userId;
|
||||
|
||||
@ApiModelProperty(value = "是否删除, 0否, 1是")
|
||||
@TableLogic
|
||||
private Integer deleted;
|
||||
|
||||
@ApiModelProperty(value = "租户id")
|
||||
private Integer tenantId;
|
||||
|
||||
@ApiModelProperty(value = "创建时间")
|
||||
private LocalDateTime createTime;
|
||||
|
||||
@ApiModelProperty(value = "修改时间")
|
||||
private LocalDateTime updateTime;
|
||||
|
||||
}
|
||||
Reference in New Issue
Block a user