This commit is contained in:
dute7liang
2024-01-15 23:28:50 +08:00
parent 7f848c6076
commit 834d78b91b
6 changed files with 80 additions and 14 deletions

View File

@@ -0,0 +1,15 @@
package com.ruoyi.cai.dto.app.vo;
import lombok.Data;
@Data
public class AgreementDTO {
private String agreement;
public AgreementDTO() {
}
public AgreementDTO(String agreement) {
this.agreement = agreement;
}
}